Skip to content

Commit 92f26a4

Browse files
committed
chore: up
1 parent a8de4b9 commit 92f26a4

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,34 @@ name: lint & test
33
on: [push, pull_request]
44

55
jobs:
6-
setup:
6+
lint:
77
runs-on: ubuntu-latest
88
steps:
99
- name: checkout
1010
uses: actions/checkout@v2
1111

12+
- uses: actions/setup-node@v2
13+
with:
14+
node-version: '14'
15+
1216
- name: install
1317
run: npm i && npm run setup:skip-build
1418

15-
lint:
16-
runs-on: ubuntu-latest
17-
steps:
18-
- name: checkout
19-
uses: actions/checkout@v2
20-
2119
- name: lint
2220
run: npm run lint
23-
needs: setup
2421

2522
test-designer:
2623
runs-on: ubuntu-latest
2724
steps:
2825
- name: checkout
2926
uses: actions/checkout@v2
3027

28+
- uses: actions/setup-node@v2
29+
with:
30+
node-version: '14'
31+
32+
- name: install
33+
run: npm i && npm run setup:skip-build
34+
3135
- name: lint
32-
run: cd packages/designer && npm test
33-
needs: setup
36+
run: cd packages/designer && npm test

0 commit comments

Comments
 (0)