We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af0f1d commit f7dd75dCopy full SHA for f7dd75d
2 files changed
.github/workflows/ci.yml
@@ -19,6 +19,23 @@ on:
19
- cron: '0 6 * * 0'
20
21
jobs:
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
34
+ node-version: ${{ matrix.node-version }}
35
+ cache: pnpm
36
+ - run: pnpm install --frozen-lockfile
37
+ - run: pnpm --filter "./packages/*" lint
38
39
test-all-packages:
40
name: Ember Tests
41
runs-on: ${{ matrix.os }}
.gitignore
@@ -16,6 +16,7 @@ node_modules/
16
/npm-debug.log*
17
/testem.log
18
yarn-error.log
+.eslintcache
# ember-try
.node_modules.ember-try/
0 commit comments