Bump undici and @sveltejs/kit #12
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: | |
pull_request: | |
branches: [main] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: npm install | |
run: npm ci --legacy-peer-deps | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
install: false | |
build: npm run build | |
start: npm run preview |