Skip to content

Commit

Permalink
Add install step in test action
Browse files Browse the repository at this point in the history
  • Loading branch information
TucksonDev committed Jan 23, 2025
1 parent 7aab28e commit 484b915
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,26 @@ env:
TransferTo: '0x3f1Eae7D46d88F08fc2F8ed27FCb2AB183EB2d0E'

jobs:
install:
name: "Install"
runs-on: ubuntu-latest
steps:
- name: Checkout files
uses: actions/checkout@v4

- name: Install node_modules
uses: OffchainLabs/actions/node-modules/install@main

test-all:
name: Test all tutorials
runs-on: ubuntu-latest
needs: install
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install node_modules
uses: OffchainLabs/actions/node-modules/install@main
- name: Restore node_modules
uses: OffchainLabs/actions/node-modules/restore@main

- name: Set up the local node
# https://github.com/OffchainLabs/actions/blob/feat-simplify/run-nitro-test-node/action.yml
Expand Down

0 comments on commit 484b915

Please sign in to comment.