This repository was archived by the owner on Jan 31, 2025. It is now read-only.
fix(deps): update react monorepo to v19 (major) #485
This file contains hidden or 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: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@master | |
- name: Setup node env 🏗 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/gallium | |
cache: "npm" | |
cache-dependency-path: "**/package-lock.json" | |
- name: Install dependencies 👨🏻💻 | |
run: npm ci | |
- name: Run tests 🧪 | |
run: npm run test |