Skip to content

Commit

Permalink
run integration in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
spsjvc committed Dec 18, 2023
1 parent 3c80987 commit 0c4aeb2
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,33 @@ jobs:
run: yarn build

- name: Test
run: yarn test
run: yarn test:unit

test-unit:
name: Test (Integration)
runs-on: ubuntu-latest
needs: install
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18

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

- name: Set up the local node
uses: OffchainLabs/actions/run-nitro-test-node@main

- name: Generate
run: yarn generate

- name: Build
run: yarn build

- name: Test
run: yarn test:integration

0 comments on commit 0c4aeb2

Please sign in to comment.