We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 116e4c5 commit 908c467Copy full SHA for 908c467
1 file changed
.github/workflows/nodejs-14.yml
@@ -0,0 +1,22 @@
1
+name: Node.js 14 CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
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