We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4786e99 commit 06a26c9Copy full SHA for 06a26c9
.github/workflows/ci.yaml
@@ -0,0 +1,25 @@
1
+name: Node.js CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+jobs:
10
11
+ test:
12
13
+ runs-on: ubuntu-latest
14
15
+ strategy:
16
+ matrix:
17
+ node-version: [ 16, 14, 12, 10 ]
18
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+ - uses: actions/setup-node@v2
22
+ with:
23
+ node-version: ${{ matrix.node-version }}
24
+ - run: npm install
25
+ - run: npm run test
0 commit comments