Bump @cypress/request and cypress #4381
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: | |
- main | |
pull_request: | |
jobs: | |
pre_job: | |
# continue-on-error: true # Uncomment once integration is finished | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@master | |
with: | |
skip_after_successful_duplicate: true | |
concurrent_skipping: 'same_content' | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
- name: npm install | |
run: npm install | |
- name: lint | |
run: npm run lint | |
- name: build | |
run: npm run build --workspaces | |
- name: test server | |
run: npm test --workspace=server | |
- name: test client | |
run: npm test --workspace=client | |
- name: Run cypress tests | |
uses: cypress-io/github-action@v2 | |
with: | |
start: npm run start:e2e |