Bump react-dom from 18.3.1 to 19.0.0 #26
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: Check builds | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 1/6 | Checkout repo | |
uses: actions/checkout@v4 | |
- name: 2/6 | Setup Node environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: 3/6 | Install depedencies | |
run: npm ci | |
- name: 4/6 | Run code styling check script | |
run: npm run prettier | |
- name: 5/6 | Run static code quality check script | |
run: npm run lint | |
- name: 6/6 | Run build package script | |
run: npm run build |