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 7afe4e7 commit 93e28d2Copy full SHA for 93e28d2
.circleci/config.yml
github/workflows/test.yml
@@ -0,0 +1,27 @@
1
+name: Test
2
+on: [push]
3
+
4
+jobs:
5
+ test:
6
+ name: Test
7
+ runs-on: ubuntu-16.04
8
+ steps:
9
+ - uses: actions/checkout@v1
10
11
+ - name: Get yarn cache directory path
12
+ id: yarn-cache-dir-path
13
+ run: echo "::set-output name=dir::$(yarn cache dir)"
14
15
+ - uses: actions/cache@v1
16
+ id: yarn-cache
17
+ with:
18
+ path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
19
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
20
+ restore-keys: |
21
+ ${{ runner.os }}-yarn-
22
23
+ - name: Install Dependencies
24
+ run: yarn install --frozen-lockfile
25
26
+ - name: Unit Tests
27
+ run: yarn test --watchAll=false
0 commit comments