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 18421e8 commit 31ee1f0Copy full SHA for 31ee1f0
.github/workflows/test.yml
@@ -0,0 +1,21 @@
1
+name: Check labs
2
+
3
+on: pull_request
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Node.js
11
+ uses: actions/setup-node@v1
12
+ with:
13
+ node-version: 14
14
+ - uses: actions/cache@v2
15
16
+ path: ~/.npm
17
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
18
+ restore-keys: |
19
+ ${{ runner.os }}-node-
20
+ - run: npm ci
21
+ - run: npm t
.travis.yml
0 commit comments