Skip to content

Commit

Permalink
fix: Set workspace resolver to v2. Add windows and linux images.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarek-kindred committed Sep 26, 2023
1 parent 12f5d6f commit cf60922
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ jobs:
target: aarch64-apple-darwin
buildCommand: |
cd $SDK_JS_HOME && npm run build -- --target aarch64-apple-darwin
- host: windows-latest
target: x86_64-pc-windows-msvc
buildCommand: |
cd $SDK_JS_HOME && npm run build -- --target x86_64-pc-windows-msvc
- host: ubuntu-latest
target: x86_64-unknown-linux-gnu
buildCommand: |
cd $SDK_JS_HOME && npm run build -- --target x86_64-unknown-linux-gnu
name: stable - ${{ matrix.settings.target }} - node@16
runs-on: ${{ matrix.settings.host }}
steps:
Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[workspace]
resolver = "2"

members = [
"packages/*",
# Example crates
Expand Down

0 comments on commit cf60922

Please sign in to comment.