Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

🤖 Bump github action versions #1092

Merged
merged 1 commit into from
Apr 11, 2024
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
13 changes: 7 additions & 6 deletions .github/workflows/on-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
run: ulimit -n 4096

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20

Expand All @@ -39,9 +39,10 @@ jobs:
run: npm run test:coverage

- name: Test coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

e2e:
name: Run e2e tests
Expand All @@ -51,21 +52,21 @@ jobs:
run: ulimit -n 4096

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run pre e2e test tasks
run: npm run e2e:pre-test

- name: Run cypress
uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
with:
wait-on: "http://localhost:30080"
browser: chrome
headed: false
config-file: cypress/cypress.config.cjs

- name: Upload videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-push-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run: ulimit -n 4096

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Log in to Quay.io
uses: docker/#-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-push-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run: ulimit -n 4096

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Log in to Quay.io
uses: docker/#-action@v3
Expand Down