File tree Expand file tree Collapse file tree 1 file changed +1
-33
lines changed Expand file tree Collapse file tree 1 file changed +1
-33
lines changed Original file line number Diff line number Diff line change 1- name : Code Coverage (main)
2- on :
3- push :
4- branches :
5- - ' main'
6- jobs :
7- coverage :
8- name : Code Coverage
9- runs-on : ubuntu-latest
10- timeout-minutes : 3
11- steps :
12- - name : Checkout
13- uses : actions/checkout@v4
14-
15- - name : Install pnpm
16- uses : pnpm/action-setup@v4
17-
18- - name : Set up Node
19- uses : actions/setup-node@v4
20- with :
21- cache : ' pnpm'
22- node-version-file : ' .nvmrc'
23-
24- - name : Install dependencies
25- run : pnpm install
26-
27- - name : Run tests with coverage
28- run : pnpm run test:ci
29-
30- - name : Upload coverage report
31- uses : codecov/codecov-action@v5
32- with :
33- CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
1+ # No changes to the content of the file. The file will be moved to `.github/workflows`.
You can’t perform that action at this time.
0 commit comments