Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: run addon tests conditionally #2115

Merged
merged 1 commit into from
Mar 10, 2023
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
1 change: 1 addition & 0 deletions .github/workflows/bundle-stats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- name: Install dependencies && and build lib
run: |
node -e "console.log(process.arch)"
npm install -g pnpm@7.25.0
pnpm install
pnpm run build:cli:release
- name: Create rspack stats
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/check-rs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ jobs:
# We need to install sass first to enable sass-loader
run: |
node -e "console.log(process.arch)"
npm i -g pnpm
pnpm i
npm install -g pnpm@7.25.0
pnpm install
cargo test --all -- --nocapture
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ on:
branches:
- main
pull_request:
paths: # Only run when changes are made to rust code or root Cargo
- "crates/**"
- "packages/**"
- "Cargo.toml"
- "Cargo.lock"
- "rust-toolchain.toml"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
branches:
- "**"
- "!release-**"
Expand Down