Skip to content

Commit

Permalink
chore: optimize integration workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Meier <[email protected]>
  • Loading branch information
n0izn0iz committed Jan 21, 2024
1 parent 221a18c commit aba2092
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,29 @@ on:

jobs:
test:
# teritorid hangs on ubuntu runner
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Checkout teritori-dapp repo
uses: actions/checkout@v4
with:
repository: TERITORI/teritori-dapp
path: teritori-dapp
ref: 8630979356205f87e9c1e43e4dd1fdf6a0280273

- uses: actions/setup-go@v3
with:
go-version: "1.20"

- uses: actions/setup-node@v3
with:
node-version: 16

- name: Setup yarn
run: npm install -g yarn
node-version: 18
cache: "yarn"
cache-dependency-path: "teritori-dapp/yarn.lock"

- name: Run integration tests
run: make integration-tests
env:
TMPDIR: "${{ runner.temp }}"
TERITORI_DAPP_REPO: teritori-dapp

0 comments on commit aba2092

Please sign in to comment.