Skip to content

Commit

Permalink
Add Node and pnpm to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
willcrichton committed Nov 19, 2024
1 parent 4a25759 commit 047383d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: lts
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Add target
run: rustup target add ${{ matrix.target }}
- name: Cross-compile
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: lts
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Run tests
run: cargo test --features dev -- --test-threads=1
- name: Run lints
Expand Down

0 comments on commit 047383d

Please sign in to comment.