Skip to content

Commit

Permalink
Add Build workspace step to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Rey committed Oct 11, 2023
1 parent 8ca2076 commit 0753eb9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/massa-web3-code-snippets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ jobs:
contents: write

steps:
- name: Install dependencies
run: |
npm ci
working-directory: ./

- name: Build workspace
run: |
npm ci
working-directory: ./

- name: Checkout code
uses: actions/checkout@v3
with:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/massa-web3-deploy-test-smartContract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Install dependencies
run: |
npm ci
working-directory: ./

- name: Build workspace
run: |
npm ci
working-directory: ./

- name: Checkout code
uses: actions/checkout@v3

Expand Down

0 comments on commit 0753eb9

Please sign in to comment.