Skip to content

chore(deps): update dependency cypress to v15.7.0 (#365) #1363

chore(deps): update dependency cypress to v15.7.0 (#365)

chore(deps): update dependency cypress to v15.7.0 (#365) #1363

Workflow file for this run

name: ci
on: push
jobs:
test:
# https://github.com/bahmutov/cypress-workflows
uses: bahmutov/cypress-workflows/.github/workflows/split.yml@v2
with:
nE2E: 3
command: npm test
test-collect:
runs-on: ubuntu-22.04
steps:
# https://github.com/actions/checkout
- name: Check out source code 🛎
uses: actions/checkout@v4
with:
# check out all commits to get accurate created date
fetch-depth: 0
- uses: bahmutov/npm-install@v1
- name: Print fiddles 🖨️
run: npm run demo:collect
env:
# we do not need to install Cypress to run this test
CYPRESS_INSTALL_BINARY: 0
release:
needs: ['test', 'test-collect']
runs-on: ubuntu-22.04
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Semantic Release 🚀
uses: cycjimmy/semantic-release-action@v4
if: github.ref == 'refs/heads/main'
with:
branch: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}