fix: prevent extend from modifying extended slots #162
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
pnpm: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
script: [lint, test, build] | |
steps: | |
- name: Checkout Codebase | |
uses: actions/checkout@v3 | |
- name: Setup Pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
run_install: false | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
cache: "pnpm" | |
check-latest: true | |
node-version-file: ".nvmrc" | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run Script ${{ matrix.script }} | |
run: pnpm ${{ matrix.script }} |