File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,17 @@ jobs:
4343 run : npm run build
4444
4545 - name : Upload build artifacts
46- uses : actions/upload-artifact@v3
46+ uses : actions/upload-artifact@v4
4747 with :
4848 name : dist
4949 path : dist/
5050
51+ - name : Upload coverage report
52+ uses : actions/upload-artifact@v4
53+ with :
54+ name : coverage-report
55+ path : coverage/
56+
5157 publish :
5258 needs : test_and_build
5359 runs-on : ubuntu-latest
@@ -64,11 +70,17 @@ jobs:
6470 registry-url : " https://registry.npmjs.org"
6571
6672 - name : Download build artifacts
67- uses : actions/download-artifact@v3
73+ uses : actions/download-artifact@v4
6874 with :
6975 name : dist
7076 path : dist/
7177
78+ - name : Download coverage report
79+ uses : actions/download-artifact@v4
80+ with :
81+ name : coverage-report
82+ path : coverage/
83+
7284 - name : Configure Git
7385 run : |
7486 git config user.name "${{ github.actor }}"
You can’t perform that action at this time.
0 commit comments