Skip to content

Bump cypress from 13.8.1 to 13.9.0 (#189) #564

Bump cypress from 13.8.1 to 13.9.0 (#189)

Bump cypress from 13.8.1 to 13.9.0 (#189) #564

Workflow file for this run

name: Angular
on: [push, pull_request]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install latest Chrome
run: |
sudo apt update
sudo apt --only-upgrade install google-chrome-stable
google-chrome --version
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: xvfb-run npm test -- --watch=false
- name: Run integration tests
uses: cypress-io/github-action@v6
with:
start: npm start
install: false
wait-on: http://localhost:4200