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 ae59792 commit 4c98c57Copy full SHA for 4c98c57
.github/workflows/test.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ name: Check TypeScript and Test
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: actions/setup-node@v2
16
+ with:
17
+ node-version: '16'
18
+ cache: 'yarn'
19
+ - run: yarn install
20
+ - run: yarn build
21
+ - run: yarn check-types
22
+ - run: yarn test:ci
23
+ - uses: codecov/codecov-action@v2
.travis.yml
0 commit comments