Skip to content

Commit da8a85b

Browse files
authored
add test job to CI
1 parent df2d678 commit da8a85b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
9-
108
steps:
119
- uses: actions/checkout@v1
1210
- uses: mymindstorm/setup-emsdk@v1
@@ -16,3 +14,9 @@ jobs:
1614
run: npm install --global coffeescript@1
1715
- name: make
1816
run: make
17+
test:
18+
runs-on: ubuntu-latest
19+
needs: [build]
20+
steps:
21+
- name: test
22+
run: npm ci && npm test

0 commit comments

Comments
 (0)