build(deps-dev): bump cypress from 10.11.0 to 13.1.0 #60
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: | |
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 .. | |