Skip to content

build(deps-dev): bump cypress from 10.11.0 to 13.1.0 #60

build(deps-dev): bump cypress from 10.11.0 to 13.1.0

build(deps-dev): bump cypress from 10.11.0 to 13.1.0 #60

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run Lint
run: |
npm ci
npm run lint
- name: Run Test
run: |
npm run test
- name: Run Cypress Integration test
run: |
npx cypress run --browser=chrome
- name: Lint and Test Aggregator
run: |
cd aggregator
npm ci
npm run lint
npm run test
cd ..