Skip to content

Commit 6987424

Browse files
authored
Create npm-gulp.yml
upcoming to future
1 parent a2ad803 commit 6987424

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/npm-gulp.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
ananthakumar j/vajratechnosolutions
2+
: NodeJS with Gulp
3+
4+
on:
5+
push:
6+
branches: [ "main" ]
7+
pull_request:
8+
branches: [ "main" ]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [14.x, 16.x, 18.x]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Use Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v3
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
26+
- name: Build
27+
run: |
28+
npm install
29+
gulp

0 commit comments

Comments
 (0)