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 444addd commit c093749Copy full SHA for c093749
.github/workflows/tests.yml
@@ -0,0 +1,17 @@
1
+name: Tests
2
+on: ['push', 'pull_request']
3
+jobs:
4
+ test:
5
+ name: Node.js ${{ matrix.node-version }}
6
+ runs-on: ubuntu-latest
7
+ strategy:
8
+ fail-fast: false
9
+ matrix:
10
+ node-version: [^12, ^14, ^16, ^17]
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-node@v2
14
+ with:
15
+ node-version: ${{ matrix.node-version }}
16
+ - run: npm install
17
+ - run: npm test
0 commit comments