Skip to content

Commit

Permalink
fmt src/legacy_setup
Browse files Browse the repository at this point in the history
  • Loading branch information
haythemsellami committed Mar 26, 2024
1 parent 7ee9f84 commit 8b9da00
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
build:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -19,13 +19,27 @@ jobs:
with:
version: nightly

- name: Install packages
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install Node.js dependencies
run: npm install


# Cache Node.js dependencies
- name: Cache Node.js dependencies
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

- name: Install NPM packages
run: npm i
build:
runs-on: ubuntu-latest
needs: setup
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Run foundry build
run: |
Expand Down

0 comments on commit 8b9da00

Please sign in to comment.