Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: latest
# Pinned below 11.12.0, whose self-install crashes with
# "Cannot use 'in' operator to search for 'integrity' in undefined".
# https://github.com/pnpm/action-setup/issues/276
# https://github.com/pnpm/pnpm/issues/12959
version: 11.11.0

- name: Setup pnpm config
run: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: latest
# Pinned below 11.12.0, whose self-install crashes with
# "Cannot use 'in' operator to search for 'integrity' in undefined".
# https://github.com/pnpm/action-setup/issues/276
# https://github.com/pnpm/pnpm/issues/12959
version: 11.11.0

- name: Install and Build
run: |
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: latest
# Pinned below 11.12.0, whose self-install crashes with
# "Cannot use 'in' operator to search for 'integrity' in undefined".
# https://github.com/pnpm/action-setup/issues/276
# https://github.com/pnpm/pnpm/issues/12959
version: 11.11.0


- uses: actions/setup-node@v6
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: latest
# Pinned below 11.12.0, whose self-install crashes with
# "Cannot use 'in' operator to search for 'integrity' in undefined".
# https://github.com/pnpm/action-setup/issues/276
# https://github.com/pnpm/pnpm/issues/12959
version: 11.11.0

# npm (not pnpm) is intentional: remark-cli is installed globally by the
# action at /usr/local/lib/node_modules/. pnpm's global store is not on
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: latest
# Pinned below 11.12.0, whose self-install crashes with
# "Cannot use 'in' operator to search for 'integrity' in undefined".
# https://github.com/pnpm/action-setup/issues/276
# https://github.com/pnpm/pnpm/issues/12959
version: 11.11.0

- run: echo "PREVIEW_PATH=pr-preview/pr-${{ github.event.number }}" >> "$GITHUB_ENV"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ After clicking "+Request Resource Allocation", you'll see a list of resources yo
</TabItem>
<TabItem value="artscience" label="Arts & Science">
- **chemistry**: A100 GPUs for use by Chemistry Simmons Center PIs
</TabItem>
- **humanities**: RTX Pro 6000 GPUs
- **economics**: RTX Pro 6000 GPUs
- **xwang**: stakeholder RTXPro 6000 GPUs
</TabItem>
</Tabs>
:::

Expand Down
49 changes: 26 additions & 23 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ start = { cmd = ["pnpm", "start"], depends-on = ["build"] }

[dependencies]
nodejs = ">=26.5.0,<26.6"
pnpm = ">=11.10.0,<12"
pnpm = ">=11.11.0,<12"
Loading