Skip to content

chore: bump all packages to latest #454

chore: bump all packages to latest

chore: bump all packages to latest #454

Workflow file for this run

name: Browser Tests
on:
push:
branches: [main, develop]
pull_request:
workflow_dispatch:
concurrency:
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
tests:
name: Browser Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Start the local node
run: npm run start -- -d
- name: Prepare and run the tests
run: |
cd test/cypress
npm ci
npm run build
npm run start
npm run test
- name: Stop the local node
run: npm run stop