File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1919 - cron : ' 0 6 * * 0'
2020
2121jobs :
22+ lint-all-packages :
23+ runs-on : ubuntu-latest
24+ timeout-minutes : 5
25+
26+ steps :
27+ - uses : actions/checkout@v3
28+ - uses : pnpm/action-setup@v2
29+ with :
30+ version : 7
31+ - name : Use Node.js ${{ matrix.node-version }}
32+ uses : actions/setup-node@v3
33+ with :
34+ node-version : ${{ matrix.node-version }}
35+ cache : pnpm
36+ - run : pnpm install --frozen-lockfile
37+ - run : pnpm --filter "./packages/*" lint
38+
2239 test-all-packages :
2340 name : Ember Tests
2441 runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ node_modules/
1616/npm-debug.log *
1717/testem.log
1818yarn-error.log
19+ .eslintcache
1920
2021# ember-try
2122.node_modules.ember-try /
You can’t perform that action at this time.
0 commit comments