Skip to content

Commit

Permalink
bump cypress and workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Nov 13, 2024
1 parent 4c0c44c commit a51e9e4
Show file tree
Hide file tree
Showing 4 changed files with 454 additions and 383 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/badges.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Update version badges 🏷
run: npx -p dependency-version-badge update-badge cypress
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ permissions:
pull-requests: write
jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies πŸ“¦
# https://github.com/cypress-io/github-action
uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
with:
runTests: false

Expand All @@ -24,7 +24,7 @@ jobs:
run: npm run stop-only

- name: Run tests πŸ§ͺ
uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
with:
install: false
start: npm start
Expand All @@ -35,11 +35,11 @@ jobs:
DEBUG: code-coverage
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies πŸ§ͺ
# https://github.com/cypress-io/github-action
uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
with:
runTests: false

Expand All @@ -52,17 +52,17 @@ jobs:
release:
needs: [test, test-merge-coverage]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install only the semantic release πŸ“¦
run: npm install semantic-release

- name: Semantic Release πŸš€
uses: cycjimmy/semantic-release-action@v3
uses: cycjimmy/semantic-release-action@v4
with:
branch: main
env:
Expand Down
Loading

0 comments on commit a51e9e4

Please sign in to comment.