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 fdfde1c commit d23ec45Copy full SHA for d23ec45
.github/workflows/test.yml
@@ -0,0 +1,21 @@
1
+name: Test
2
+on:
3
+ push:
4
+ pull_request:
5
+env:
6
+ FORCE_COLOR: 2
7
+jobs:
8
+ test:
9
+ name: Test
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout the repository
13
+ uses: actions/checkout@v2
14
+ - name: Install Node.js
15
+ uses: actions/setup-node@v1
16
+ with:
17
+ node-version: 15
18
+ - name: Install all dependencies
19
+ uses: bahmutov/npm-install@v1
20
+ - name: Run tests
21
+ run: yarn test
.travis.yml
0 commit comments