This commit is contained in:
Pierre Jacquier
2025-02-26 10:30:12 -05:00
parent fbed6bbcf7
commit d2adb5bfad
8 changed files with 17 additions and 17 deletions

View File

@ -13,9 +13,9 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- name: Install dependencies
run: yarn
run: pnpm install
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache wasm

View File

@ -32,7 +32,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- run: pnpm install
@ -133,7 +133,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn' # Set this to npm, pnpm or pnpm.
cache: 'pnpm' # Set this to npm, pnpm or pnpm.
- name: pnpm install
# Windows is picky sometimes and fails on fetch. Step takes about ~30s

View File

@ -19,7 +19,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- run: pnpm install
working-directory: packages/codemirror-lang-kcl

View File

@ -58,17 +58,17 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- uses: KittyCAD/action-install-cli@main
- name: Install dependencies
shell: bash
run: yarn
run: pnpm install
- name: Cache Playwright Browsers
uses: actions/cache@v4
with:
path: |
~/.cache/ms-playwright/
key: ${{ runner.os }}-playwright-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-playwright-${{ hashFiles('pnpm.lock') }}
- name: Install Playwright Browsers
shell: bash
run: pnpm playwright install --with-deps

View File

@ -21,7 +21,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- run: pnpm install
- run: pnpm generate:machine-api
- run: pnpm fmt

View File

@ -19,7 +19,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- name: Find tag workflow id
id: tag_workflow_id

View File

@ -23,7 +23,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- run: pnpm install
- run: pnpm fmt-check
@ -35,7 +35,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- run: pnpm install
- uses: taiki-e/install-action@2dbeb927f58939d3aa13bf06ba0c0a34b76b9bfb
with:
@ -50,7 +50,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- run: pnpm install
- uses: Swatinem/rust-cache@v2
with:
@ -70,7 +70,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- run: pnpm install
- run: pnpm lint
@ -95,7 +95,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- run: pnpm install
- uses: taiki-e/install-action@2dbeb927f58939d3aa13bf06ba0c0a34b76b9bfb
@ -124,7 +124,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'
- run: pnpm install
- uses: taiki-e/install-action@2dbeb927f58939d3aa13bf06ba0c0a34b76b9bfb

View File

@ -347,7 +347,7 @@ However because much of our tests involve clicking in the stream at specific loc
If you already haven't, run the following:
```
yarn
pnpm install
pnpm build:wasm
pnpm start
```