[Snyk] Upgrade @types/node from 20.14.15 to 20.16.1 #230
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: End-to-end tests | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build the project | |
run: npm run build | |
- name: Start server | |
run: npm start & | |
env: | |
CI: true | |
- name: Wait for server | |
run: npx wait-on http://127.0.0.1:3000 | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 |