We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4879d4e commit e0810d1Copy full SHA for e0810d1
1 file changed
.github/workflows/node.js.yml
@@ -0,0 +1,31 @@
1
+# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
+# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
+
4
+name: Node.js CI
5
6
+on:
7
+ push:
8
+ branches: [ master ]
9
+ paths:
10
+ - 'nodejs/*'
11
+ pull_request:
12
13
14
15
16
+jobs:
17
+ build:
18
19
+ runs-on: ubuntu-latest
20
21
+ strategy:
22
+ matrix:
23
+ node-version: [10.x, 12.x, 14.x]
24
25
+ steps:
26
+ - uses: actions/checkout@v2
27
+ - name: Use Node.js ${{ matrix.node-version }}
28
+ uses: actions/setup-node@v1
29
+ with:
30
+ node-version: ${{ matrix.node-version }}
31
+ - run: node test.js dump verbose
0 commit comments