From 558a94cc2648ce0f128b7e00c2128d90868aca03 Mon Sep 17 00:00:00 2001 From: Nashid Shah Date: Fri, 10 Nov 2023 13:32:45 -0500 Subject: [PATCH] Updated npm-gulp.yml --- .github/workflows/npm-gulp.yml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.github/workflows/npm-gulp.yml b/.github/workflows/npm-gulp.yml index a78ad12..3d07ad1 100644 --- a/.github/workflows/npm-gulp.yml +++ b/.github/workflows/npm-gulp.yml @@ -2,9 +2,9 @@ name: NodeJS with Gulp on: push: - branches: [ "main" ] + branches: ["main"] pull_request: - branches: [ "main" ] + branches: ["main"] jobs: build: @@ -15,18 +15,20 @@ jobs: node-version: [14.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} + - 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: Install dependencies + run: npm install - - name: Build with Gulp - run: npx gulp + - name: Debug Gulp Build + run: | + npx gulp build + ls -l # List files and directories in the current directory for debugging purposes deploy: runs-on: ubuntu-latest