Bump ws from 8.17.0 to 8.18.0 #44
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
TZ: Europe/Zurich | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "npm" | |
- name: Install | |
run: npm install --force # fix dependency issues | |
- name: Lint | |
run: npm run lint | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
config: video=false | |
install-command: "true" # re-use installed npm from above | |
build: npm run build:prod | |
start: npm run start | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots |