Skip to content

Commit

Permalink
install before build (#624)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem authored Jan 4, 2024
1 parent 84a8ad4 commit 83fc78f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy-dev-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
with:
node-version: 20
cache: "npm"
- run: npm run build
- run: |
npm install
npm run build
- name: Install bos CLI
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy-prod-mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
with:
node-version: 20
cache: "npm"
- run: npm run build
- run: |
npm install
npm run build
- name: Install bos CLI
run: |
Expand Down

0 comments on commit 83fc78f

Please sign in to comment.