Skip to content

Bump @types/react from 18.3.7 to 18.3.12 #230

Bump @types/react from 18.3.7 to 18.3.12

Bump @types/react from 18.3.7 to 18.3.12 #230

Workflow file for this run

name: Build and test
on:
push:
branches: ["master"]
pull_request:
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: yarn
- name: Install packages
run: yarn install
- name: Format
run: yarn run format:check
- name: Lint
run: yarn run lint
- name: Spell check
run: yarn run spellcheck
- name: Test build
run: yarn run build
- name: Run tests
run: yarn test
- name: Run coverage
run: yarn run coverage
- name: Coveralls
uses: coverallsapp/github-action@v2