Skip to content

Commit

Permalink
ci: npm i forge
Browse files Browse the repository at this point in the history
  • Loading branch information
ethyla committed Sep 18, 2024
1 parent a5b2f23 commit 57bdc33
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ jobs:
run: |
forge --version
- name: Setup Node.js environment
uses: actions/setup-node@v1
- name: Cache npm dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-npm-cache-
- name: Install npm dependencies
run: npm install

# - name: Run Forge fmt
# run: |
# forge fmt --check
Expand Down

0 comments on commit 57bdc33

Please sign in to comment.