Skip to content

Bump @types/react from 18.3.8 to 18.3.10 #173

Bump @types/react from 18.3.8 to 18.3.10

Bump @types/react from 18.3.8 to 18.3.10 #173

Workflow file for this run

name: Format and Test
on:
pull_request:
branches:
- main
jobs:
format:
name: Format code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- run: npx prettier --check .
test:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test build website
run: yarn build