We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e17273 commit ddaa9c5Copy full SHA for ddaa9c5
.github/workflows/ci-code-quality.yml
@@ -5,14 +5,22 @@ on: [pull_request]
5
jobs:
6
code-quality-and-tests:
7
runs-on: ubuntu-latest
8
- timeout-minutes: 14
+ timeout-minutes: 5
9
10
steps:
11
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
12
- uses: ./.github/actions/setup
13
14
+ - name: Cache ESLint
15
+ uses: actions/cache@v4
16
+ with:
17
+ path: .eslintcache
18
+ key: eslint-cache-${{ runner.os }}-${{ hashFiles('eslint.config.mjs', 'package.json', 'pnpm-lock.yaml') }}
19
+ restore-keys: |
20
+ eslint-cache-${{ runner.os }}-
21
+
22
- name: Run ESLint
- run: pnpm lint --max-warnings=0
23
+ run: pnpm lint --max-warnings=0 --cache
24
25
- name: Run Spellcheck
26
run: pnpm spellcheck
0 commit comments