Skip to content

Commit

Permalink
fix: added node v16
Browse files Browse the repository at this point in the history
  • Loading branch information
gagdiez committed Oct 20, 2023
1 parent c983b1f commit a0f2116
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
- name: Checkout branch
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand All @@ -28,4 +30,4 @@ jobs:
- name: Run Rust integration tests
run: cd integration-tests/rs && cargo run --example integration-tests
- name: Run TypeScript integration tests
run: cd integration-tests/ts && yarn && yarn test
run: cd integration-tests/ts && npm i && npm run test

0 comments on commit a0f2116

Please sign in to comment.