File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 55 - pull_request
66
77jobs :
8+ format-check :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v3
12+ - name : Use Node.js
13+ uses : actions/setup-node@v3
14+ with :
15+ node-version : 16
16+ cache : ' yarn'
17+ - name : Install dependencies
18+ run : yarn
19+ - name : Format check
20+ run : yarn format:check
21+
822 build :
923 runs-on : ubuntu-latest
1024 steps :
Original file line number Diff line number Diff line change 1+ # output
2+ dist
Original file line number Diff line number Diff line change 3030 "build" : " tsup" ,
3131 "example:custom-properties" : " ts-node ./examples/custom-properties.ts" ,
3232 "example:custom-media-queries" : " ts-node ./examples/custom-media-queries.ts" ,
33+ "format" : " prettier --write ." ,
34+ "format:check" : " prettier --check ." ,
3335 "prebuild" : " rimraf ./dist" ,
3436 "prepublishOnly" : " npm run build" ,
3537 "test" : " vitest" ,
You can’t perform that action at this time.
0 commit comments