chore(deps): update dependency sass to v1.81.0 #856
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: Cypress Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ubuntu-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cypress run | |
uses: cypress-io/github-action@v2 | |
with: | |
build: npm run build | |
start: npm run start | |
wait-on: http://localhost:3000 | |
record: true | |
config-file: cypress.config.ts | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/upload-artifact@v3 | |
if: always() # / if: failure() <- more suitable for production | |
with: | |
name: cypress-videos | |
path: cypress/videos | |
windows-run: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cypress run | |
uses: cypress-io/github-action@v5.0.7 | |
with: | |
build: npm run build | |
start: npm run start | |
wait-on: http://localhost:3000 | |
record: true | |
config-file: cypress.config.ts | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/upload-artifact@v3 | |
if: always() # / if: failure() <- more suitable for production | |
with: | |
name: cypress-videos | |
path: cypress/videos |