Skip to content

Commit

Permalink
Merge pull request #14 from BitGo/bump-to-maintained-actions
Browse files Browse the repository at this point in the history
ci: switch to dtolnay/rust-toolchain
  • Loading branch information
lcovar authored Jul 31, 2024
2 parents 656ece8 + 274fc72 commit 40420c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,15 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Setup node:${{ matrix.node-version }}
uses: actions/setup-node@v2
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install Rust
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true

- name: Install wasm-pack
run: |
Expand Down Expand Up @@ -64,4 +62,4 @@ jobs:
run: yarn lerna exec 'prettier --check .'

- name: Unit Test
run: yarn lerna run test
run: yarn lerna run test
6 changes: 2 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install Rust
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true

- name: Install wasm-pack
run: |
Expand Down

0 comments on commit 40420c7

Please sign in to comment.