React v3 #9
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: Pull Request | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
- name: Installing dependencies | |
run: npm ci | |
- name: Running typecheck | |
continue-on-error: true | |
run: npm run typecheck | |
- name: Running lint | |
continue-on-error: true | |
run: npm run lint | |
- name: Running tests | |
continue-on-error: true | |
run: npm run test | |
- name: Running build | |
run: npm run build |