Skip to content

Commit 029736b

Browse files
committed
test(ci): run tests in parallel
Signed-off-by: Adam Setch <adam.setch@outlook.com>
1 parent 04d757d commit 029736b

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/renovate.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ jobs:
3232
node-version-file: .nvmrc
3333
cache: pnpm
3434

35-
- run: pnpm install --global renovate
35+
- name: Install Renovate
36+
run: pnpm install --global renovate
3637

3738
- name: Validate Renovate config
3839
run: renovate-config-validator

.github/workflows/test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,14 @@ jobs:
2424
node-version-file: .nvmrc
2525
cache: pnpm
2626

27-
- run: pnpm install
28-
- run: pnpm tsc --noEmit
29-
- run: pnpm test:coverage --verbose
27+
- name: Install dependencies
28+
run: pnpm install --frozen-lockfile
29+
30+
- name: Check TypeScript
31+
run: pnpm tsc --noEmit
32+
33+
- name: Run tests with coverage
34+
run: pnpm test:coverage --verbose
3035

3136
- name: Archive code coverage results
3237
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0

0 commit comments

Comments
 (0)