Skip to content

Commit

Permalink
chore: fix build aptos
Browse files Browse the repository at this point in the history
  • Loading branch information
npty committed Jul 8, 2024
1 parent fc13407 commit a986feb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-aptos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18

- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:
uses: foundry-rs/foundry-toolchain@v1

- name: Cache node_modules
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
Expand All @@ -40,7 +40,7 @@ jobs:
run: npm ci

- name: Build
run: npm run build:aptos
run: npm run build:core && npm run build:aptos

- name: Test
timeout-minutes: 15
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-sui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
sudo mv ./target/release/sui-ubuntu-x86_64 /usr/local/bin/sui
- name: Cleanup
run: rm -rf target aptos-cli-1.0.4-Ubuntu-22.04-x86_64.zip sui-devnet-v1.7.0-ubuntu-x86_64.tgz
run: rm -rf target sui-devnet-v1.7.0-ubuntu-x86_64.tgz

- name: Setup Node
uses: actions/setup-node@v4
Expand Down

0 comments on commit a986feb

Please sign in to comment.