Skip to content

Commit 908c467

Browse files
committed
f
1 parent 116e4c5 commit 908c467

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/nodejs-14.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Node.js 14 CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Use Node.js
16+
uses: irby/setup-node-nvm@master
17+
with:
18+
node-version: '16.x'
19+
- run: npm install
20+
- run: npm run prepublishOnly
21+
- run: node -v
22+
- run: . /home/runner/mynvm/nvm.sh && nvm install 14 && nvm use 14 && node -v && npm run test-local

0 commit comments

Comments
 (0)