File tree Expand file tree Collapse file tree 1 file changed +13
-10
lines changed
Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -3,31 +3,34 @@ name: lint & test
33on : [push, pull_request]
44
55jobs :
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
You can’t perform that action at this time.
0 commit comments