This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
Bump @types/react from 18.2.42 to 18.2.45 #761
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: Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.7.0 | |
- name: Install Dependencies | |
run: npm install | |
- name: Run ESLint | |
run: npm run lint | |
- name: Run unit tests | |
run: npm test | |
- name: Run end-to-end tests | |
uses: cypress-io/github-action@v2 | |
with: | |
command: npm run test:e2e | |
start: npm run start | |
wait-on: http://localhost:3000 |