Skip to content

Commit 95e7363

Browse files
committed
Updates github action
1 parent 053e2db commit 95e7363

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
1-
name: CI
1+
name: Continuous Integration
22
on: push
33
jobs:
4-
build:
4+
prepare:
55
runs-on: ubuntu-latest
66
steps:
7+
- name: Use appropriate version of Node.js
78
- uses: actions/setup-node@v2
89
with:
910
node-version: "15"
1011
check-latest: true
1112
- uses: actions/checkout@v2
1213
- name: Install modules
1314
run: npm i
15+
test:
16+
needs: prepare
17+
runs-on: ubuntu-latest
18+
steps:
1419
- name: Run tests
1520
run: npm run test

0 commit comments

Comments
 (0)