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 d1ad9ea commit c47a69dCopy full SHA for c47a69d
.github/workflows/tests.yaml
@@ -0,0 +1,19 @@
1
+name: Tests
2
+
3
+on: [push]
4
5
+jobs:
6
+ unit:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ node: [ '12', '14', '16' ]
11
12
+ container:
13
+ image: node:${{ matrix.node }}-alpine
14
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - run: yarn install --frozen-lockfile
18
+ - run: yarn lint
19
+ - run: yarn test
.travis.yml
0 commit comments