We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d757d commit 029736bCopy full SHA for 029736b
2 files changed
.github/workflows/renovate.yml
@@ -32,7 +32,8 @@ jobs:
32
node-version-file: .nvmrc
33
cache: pnpm
34
35
- - run: pnpm install --global renovate
+ - name: Install Renovate
36
+ run: pnpm install --global renovate
37
38
- name: Validate Renovate config
39
run: renovate-config-validator
.github/workflows/test.yml
@@ -24,9 +24,14 @@ jobs:
24
25
26
27
- - run: pnpm install
28
- - run: pnpm tsc --noEmit
29
- - run: pnpm test:coverage --verbose
+ - name: Install dependencies
+ run: pnpm install --frozen-lockfile
+
30
+ - name: Check TypeScript
31
+ run: pnpm tsc --noEmit
+ - name: Run tests with coverage
+ run: pnpm test:coverage --verbose
- name: Archive code coverage results
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
0 commit comments