Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload build artifact
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4
with:
name: build
path: ./dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint_format_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ jobs:
TEST_SURVEY_RECORD_ID: ${{ vars.TEST_SURVEY_RECORD_ID }}
TEST_TEXT_FIELD: ${{ vars.TEST_TEXT_FIELD }}
- name: Upload test coverage artifact
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-${{ matrix.node-version }}
path: ./coverage
publish_test_coverage:
needs: test
Expand All @@ -128,7 +128,7 @@ jobs:
- name: Download test coverage artifact
uses: actions/download-artifact@v4.1.7
with:
name: coverage
name: coverage-20.x
path: ./coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
Expand Down
Loading