File tree Expand file tree Collapse file tree 1 file changed +14
-15
lines changed
Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Tests
22
33on :
44 push :
5- branches : [' master', ' dev' ]
5+ branches : [" master", " dev" ]
66 workflow_dispatch :
77
88concurrency :
@@ -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
You can’t perform that action at this time.
0 commit comments