Bump @types/react from 18.3.7 to 18.3.12 #230
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: 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 |