Bump cypress from 13.1.0 to 13.2.0 #715
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: Build_CI_Vue_Dev | |
on: | |
pull_request: | |
paths-ignore: # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet | |
- '**/README.md' | |
- '**/dependabot.yml' | |
- '.github/workflows/develop_CD.yml' | |
- '.github/workflows/main_CD.yml' | |
branches: | |
- develop | |
concurrency: develop_CI | |
jobs: | |
build-ci: | |
name: 'Build and CI' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cypress CI Run | |
uses: cypress-io/github-action@v6 | |
with: | |
build: npm run build:development | |
start: npm run serve | |
wait-on: 'http://localhost:4200' | |
config-file: cypress.config.ci.js | |
automerge: | |
needs: build-ci | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: fastify/github-action-merge-dependabot@v3.9.1 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} |