Skip to content

Commit

Permalink
Try better pnpm path
Browse files Browse the repository at this point in the history
  • Loading branch information
palfrey committed Mar 31, 2024
1 parent 78b1eb4 commit 7258272
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:
run: cargo clippy -- -W clippy::all
if: matrix.rust == 'stable'
env:
RUST_BACKTRACE: 1
CARGO_PROFILE_DEV_BUILD_OVERRIDE_DEBUG: true
RUST_BACKTRACE: full
- name: Build and test
run: cargo test
env:
RUST_MIN_STACK: 8388608
RUST_BACKTRACE: full

minimal-versions:
name: minimal versions check
Expand All @@ -54,8 +54,7 @@ jobs:
run: rm Cargo.lock
- run: cargo build -Z minimal-versions
env:
RUST_BACKTRACE: 1
CARGO_PROFILE_DEV_BUILD_OVERRIDE_DEBUG: true
RUST_BACKTRACE: full

web:
name: web build
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ struct Ast {

fn make_peg() -> Result<(), Error> {
if !Path::new("node_modules/.bin/peggy").exists() {
Command::new("pnpm")
Command::new("./pnpm")
.args(["install"])
.output()
.context("pnpm install")?;
Expand Down

0 comments on commit 7258272

Please sign in to comment.