From e3dc277e7ab1758230e259931f51f2cd7ee3b93b Mon Sep 17 00:00:00 2001 From: Thorsten Bylicki <109308073+bylickilabs@users.noreply.github.com> Date: Tue, 1 Jul 2025 23:32:23 +0200 Subject: [PATCH] Create npm-gulp.yml --- .github/workflows/npm-gulp.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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..cc973c8 --- /dev/null +++ b/.github/workflows/npm-gulp.yml @@ -0,0 +1,29 @@ +name: NodeJS with Gulp + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + + - name: Install dependencies + run: npm install + + - name: Build with Gulp + run: npx gulp