Skip to content

Commit 060b987

Browse files
committed
fix: CI tests
1 parent 9d9b1ba commit 060b987

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

.github/workflows/tests.yml

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Tests
22

33
on:
44
push:
5-
branches: ['master', 'dev']
5+
branches: ["master", "dev"]
66
workflow_dispatch:
77

88
concurrency:
@@ -28,24 +28,23 @@ jobs:
2828
- name: Setup Node.js
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version-file: '.nvmrc'
32-
cache: 'pnpm'
31+
node-version-file: ".nvmrc"
32+
cache: "pnpm"
3333
cache-dependency-path: pnpm-lock.yaml
3434

3535
- name: Install dependencies
3636
run: pnpm install --frozen-lockfile
3737

3838
- name: Run tests with coverage
3939
env:
40-
CI: 'true'
41-
run: |
42-
pnpm test -- --coverage --ci
43-
44-
- name: Upload coverage artifact
45-
if: always()
46-
uses: actions/upload-artifact@v4
47-
with:
48-
name: coverage
49-
path: |
50-
coverage/**
51-
if-no-files-found: ignore
40+
CI: "true"
41+
run: pnpm test --ci
42+
43+
# - name: Upload coverage artifact
44+
# if: always()
45+
# uses: actions/upload-artifact@v4
46+
# with:
47+
# name: coverage
48+
# path: |
49+
# coverage/**
50+
# if-no-files-found: ignore

0 commit comments

Comments
 (0)