Skip to content

Commit

Permalink
fix(deps): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mkosir committed Jan 29, 2024
1 parent 831f615 commit 136b334
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: test-e2e
on: push

env:
FOLDER_PATH_E2E_REPORT: ./test-e2e-report
FOLDER_PATH_TEST_E2E_REPORT: ./test-e2e-report

jobs:
test:
Expand All @@ -28,7 +28,7 @@ jobs:
# Upload test report also in case of test failure.
if: always()
with:
publish-dir: ${{ env.FOLDER_PATH_E2E_REPORT }}
publish-dir: ${{ env.FOLDER_PATH_TEST_E2E_REPORT }}
production-deploy: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: test

on: push

env:
FOLDER_PATH_TEST_UNIT_REPORT: ./test-unit-report

jobs:
test:
runs-on: ubuntu-latest
Expand All @@ -16,6 +19,15 @@ jobs:
- name: Test 🧪
run: npm run test-report

- name: Upload report 📈
uses: nwtgck/actions-netlify@v2
with:
publish-dir: ${{ env.FOLDER_PATH_TEST_UNIT_REPORT }}
production-deploy: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_TEST_UNIT_REPORT }}

- name: Upload coverage to Codecov 📈
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 136b334

Please sign in to comment.