chore(deps): update dependency cypress to v13.14.2 #576
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |