fix(deps): update react monorepo (major) #983
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: Run Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.2.1 | |
- name: Cache pnpm modules | |
uses: actions/cache@v4.1.1 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
run_install: true | |
- name: Use Node.js | |
uses: actions/setup-node@v4.0.4 | |
with: | |
node-version-file: .node-version | |
cache: "pnpm" | |
- name: Run Test | |
run: pnpm test | |
- name: Build for lint | |
run: pnpm build:chrome |