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 db1033a commit 3c64a7eCopy full SHA for 3c64a7e
.github/workflows/test.yaml
@@ -0,0 +1,25 @@
1
+name: JS - Unit Tests
2
+
3
+on: push
4
5
+jobs:
6
7
+ run-tests:
8
+ name: Unit Tests
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Check out Git repository
13
+ uses: actions/checkout@v2
14
15
+ - name: Set up Node.js
16
+ uses: actions/setup-node@v1
17
+ with:
18
+ node-version: 14
19
20
+ - name: Install dependencies with aching
21
+ uses: bahmutov/npm-install@v1
22
23
+ - name: Run unit tests
24
+ run: |
25
+ yarn run test
0 commit comments