File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,21 @@ concurrency:
1111 cancel-in-progress : true
1212
1313jobs :
14+ lint :
15+ name : Lints
16+ runs-on : ubuntu-latest
17+ timeout-minutes : 10
18+
19+ steps :
20+ - uses : actions/checkout@v4
21+ - uses : pnpm/action-setup@v4
22+ - uses : actions/setup-node@v4
23+ with :
24+ node-version : 18
25+ cache : ' pnpm'
26+ - run : pnpm install
27+ - run : pnpm lint
28+
1429 test :
1530 name : Tests
1631 runs-on : ubuntu-latest
2439 node-version : 18
2540 cache : ' pnpm'
2641 - run : pnpm install
27- - run : pnpm lint
2842 - run : pnpm test:ember
2943
3044 test-node :
Original file line number Diff line number Diff line change 2020 "build" : " ember build --environment=production" ,
2121 "coverage" : " nyc report --reporter=text-lcov | codeclimate-test-reporter" ,
2222 "lint" : " concurrently \" npm:lint:*(!fix)\" --names \" lint:\" " ,
23+ "lint:format" : " prettier . --cache --check" ,
2324 "lint:hbs" : " ember-template-lint ." ,
2425 "lint:js" : " eslint ." ,
2526 "start" : " ember serve" ,
26- "test" : " concurrently \" npm:lint \" \" npm: test:*\" --names \" lint,test: \" " ,
27+ "test" : " concurrently \" npm:test:*\" " ,
2728 "test:ember" : " ember test" ,
2829 "test:ember-compatibility" : " ember try:each" ,
2930 "test:node" : " nyc mocha 'node-tests/**/*-test.js'"
You can’t perform that action at this time.
0 commit comments