Fix and optimize ReactiveMap and ReactiveWeakMap #2097
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: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Cache turbo build setup | |
uses: actions/cache@v4 | |
with: | |
path: node_modules/.cache/turbo | |
key: turbo-${{ github.sha }} | |
restore-keys: | | |
turbo- | |
- name: Build all packages | |
run: pnpm build | |
- name: Lint | |
# Will run the step even if build step failed | |
if: success() || failure() | |
run: pnpm lint | |
- name: Test all packages | |
# Will run the step even if lint step failed | |
if: success() || failure() | |
run: pnpm test |