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.
2 parents 18d3f4a + 483e779 commit b9af2efCopy full SHA for b9af2ef
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: Test
2
+on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Setup Node
13
+ uses: actions/setup-node@v2
14
+ with:
15
+ node-version: 17
16
+ - name: Cache Yarn
17
+ uses: actions/cache@v2
18
19
+ path: '**/node_modules'
20
+ key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
21
+ restore-keys: |
22
+ ${{ runner.os }}-yarn-
23
+ - run: yarn install --frozen-lockfile
24
+ - run: yarn test
25
+ env:
26
+ CI: true
0 commit comments