This repository was archived by the owner on Jun 25, 2025. It is now read-only.
TinaCMS content update #343
This file contains hidden or 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: Cypress Tests | |
| on: push | |
| jobs: | |
| cypress-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout code | |
| uses: actions/checkout@v4 | |
| - name: run cypress tests | |
| uses: cypress-io/github-action@v6 | |
| continue-on-error: true | |
| with: | |
| browser: chrome | |
| start: npm run dev | |
| config: baseUrl=http://localhost:3000 | |
| spec: | | |
| cypress/e2e/accessibility.cy.ts |