Skip to content

chore(deps): update dependency cypress to v15 #163

chore(deps): update dependency cypress to v15

chore(deps): update dependency cypress to v15 #163

Workflow file for this run

name: ci
on: push
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v3
- name: Run tests πŸ§ͺ
# https://github.com/cypress-io/github-action
uses: cypress-io/github-action@v4
- uses: actions/upload-artifact@v2
name: Store any screenshots πŸ–Ό
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
test-cypress-v9:
runs-on: ubuntu-20.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v3
- name: Install top dependencies πŸ“¦
# https://github.com/cypress-io/github-action
uses: cypress-io/github-action@v4
with:
runTests: false
- name: Run Cypress v9 tests πŸ§ͺ
uses: cypress-io/github-action@v4
with:
working-directory: cypress-v9
- uses: actions/upload-artifact@v2
name: Store any v9 screenshots πŸ–Ό
if: failure()
with:
name: cypress-screenshots-v9
path: cypress-v9/cypress/screenshots
release:
needs: [test, test-cypress-v9]
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v3
- name: Install only the semantic release πŸ“¦
run: npm install semantic-release
- name: Semantic Release πŸš€
uses: cycjimmy/semantic-release-action@v2
with:
branch: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}