We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df2d678 commit da8a85bCopy full SHA for da8a85b
1 file changed
.github/workflows/CI.yml
@@ -4,9 +4,7 @@ on: [push]
4
5
jobs:
6
build:
7
-
8
runs-on: ubuntu-latest
9
10
steps:
11
- uses: actions/checkout@v1
12
- uses: mymindstorm/setup-emsdk@v1
@@ -16,3 +14,9 @@ jobs:
16
14
run: npm install --global coffeescript@1
17
15
- name: make
18
run: make
+ test:
+ runs-on: ubuntu-latest
19
+ needs: [build]
20
+ steps:
21
+ - name: test
22
+ run: npm ci && npm test
0 commit comments