Skip to content

React v3

React v3 #10

Workflow file for this run

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