From 5f61ff5a39457352e7d93d2792836d9a4892bbf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Desch=C3=AAnes?= Date: Wed, 21 Feb 2024 10:30:27 -0500 Subject: [PATCH 1/2] Create npm-gulp.yml --- .github/workflows/npm-gulp.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/npm-gulp.yml diff --git a/.github/workflows/npm-gulp.yml b/.github/workflows/npm-gulp.yml new file mode 100644 index 0000000..38228f1 --- /dev/null +++ b/.github/workflows/npm-gulp.yml @@ -0,0 +1,28 @@ +name: NodeJS with Gulp + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [0.6, 0.8, 0.10, 14.x, 16.x, 18.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + gulp From 27e89918bb6355870bcd3fe263a90f068a95d720 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Desch=C3=AAnes?= Date: Wed, 21 Feb 2024 10:32:06 -0500 Subject: [PATCH 2/2] Update npm-gulp.yml --- .github/workflows/npm-gulp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/npm-gulp.yml b/.github/workflows/npm-gulp.yml index 38228f1..4ddb185 100644 --- a/.github/workflows/npm-gulp.yml +++ b/.github/workflows/npm-gulp.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [0.6, 0.8, 0.10, 14.x, 16.x, 18.x] + node-version: [14.x, 16.x, 18.x] steps: - uses: actions/checkout@v4