Skip to content

chore(deps): update dependency cypress to v13.14.2 #576

chore(deps): update dependency cypress to v13.14.2

chore(deps): update dependency cypress to v13.14.2 #576

Workflow file for this run

name: ci
on: push
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
- name: Install everything πŸ“¦
# https://github.com/cypress-io/github-action
uses: cypress-io/github-action@v6
with:
runTests: false
# make sure we did not leave "it.only" accidentally
# https://github.com/bahmutov/stop-only
- name: Catch "it.only" 🫴
run: npm run stop-only
- name: Lint code β˜‘οΈ
run: npm run lint
test:
# https://github.com/bahmutov/cypress-workflows
uses: bahmutov/cypress-workflows/.github/workflows/split.yml@v2
with:
nE2E: 3
build: npm run build
release:
needs: [lint, test]
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
- name: Install everything πŸ“¦
# https://github.com/cypress-io/github-action
uses: cypress-io/github-action@v6
with:
runTests: false
- name: Build dist πŸ—
run: npm run build
- name: Semantic Release πŸš€
uses: cycjimmy/semantic-release-action@v4
with:
branch: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}