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 1fbdd54 commit 465a2ffCopy full SHA for 465a2ff
.github/workflows/checker.yml
@@ -0,0 +1,21 @@
1
+name: checker
2
+on: push
3
+
4
+jobs:
5
+ test:
6
+ runs-on: ubuntu-latest
7
8
+ steps:
9
+ - uses: actions/checkout@v2
10
11
+ - name: cache deps
12
+ uses: actions/cache@v2
13
+ with:
14
+ path: "**/node_modules"
15
+ key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
16
17
+ - name: yarn install
18
+ run: yarn install
19
20
+ - name: yarn test
21
+ run: yarn test
.gitignore
@@ -7,4 +7,7 @@ dist
packages/**/dist
# NPM
-package-lock.json
+package-lock.json
+# yarn
+yarn-error.log
0 commit comments