File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 15
15
strategy :
16
16
fail-fast : false
17
17
matrix :
18
- node : [ '12', '14' ]
18
+ node : ['12', '14']
19
19
name : Tests (Node.js ${{ matrix.node }})
20
20
steps :
21
21
- uses : actions/checkout@v2
34
34
name : linter-check
35
35
runs-on : ubuntu-latest
36
36
steps :
37
- - uses : actions/checkout@v2
38
- - name : Install dependencies
39
- run : yarn install
40
- - name : Run linter
41
- run : yarn run lint
42
- - name : Run prettier
43
- run : yarn run prettier-ci
44
- env :
45
- CI : true
37
+ - uses : actions/checkout@v2
38
+ - name : Install dependencies
39
+ run : yarn install
40
+ - name : Run linter
41
+ run : yarn run lint
Original file line number Diff line number Diff line change 19
19
"playground:js" : " yarn --cwd ./playgrounds/javascript && yarn --cwd ./playgrounds/javascript serve" ,
20
20
"lint" : " eslint ." ,
21
21
"lint:fix" : " eslint --fix ." ,
22
- "prettier-ci" : " prettier --check ./src/**/*.scss '**/*.md'" ,
23
22
"test" : " ./scripts/test" ,
24
23
"test:watch" : " ./scripts/test-watch"
25
24
},
You can’t perform that action at this time.
0 commit comments