We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdb8bc5 commit ce889d7Copy full SHA for ce889d7
1 file changed
.github/workflows/nodejs.yaml
@@ -0,0 +1,26 @@
1
+name: Node.js
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ node-14:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - uses: actions/setup-node@v3
16
+ with: { node-version: 14 }
17
+ - run: npm ci
18
+ - run: npm test
19
+ node-latest:
20
21
22
23
24
+ with: { node-version: latest }
25
26
+ - run: NODE_OPTIONS=--openssl-legacy-provider npm test
0 commit comments