We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20eade5 + 8a78619 commit 152d8ecCopy full SHA for 152d8ec
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - master
8
+ pull_request: {}
9
10
+jobs:
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ strategy:
16
+ matrix:
17
+ node-version: [10.x, 12.x]
18
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+ - uses: actions/setup-node@v3
22
+ with:
23
+ node-version: ${{ matrix.node-version }}
24
+ cache: yarn
25
+ - run: yarn install --frozen-lockfile
26
+ - run: yarn lint
27
+ - run: yarn test
28
+ - uses: coverallsapp/github-action@master
29
30
+ github-token: ${{ secrets.GITHUB_TOKEN }}
31
+ - run: yarn test:integration
32
+ - run: yarn test:notelemetry
33
.travis.yml
0 commit comments