From f8a22e1141859f65c623ce35e4e937e6d02db0ce Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Sat, 14 Sep 2024 11:08:15 +0100 Subject: [PATCH] GitHub Actions: add Topiary (my fork) to build --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f9578c..239ee9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,6 @@ name: Ursa CI -on: [ push, pull_request ] +on: [push, pull_request] jobs: # Build job @@ -11,5 +11,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - - run: npm install - - run: npm run test-all + - run: git clone https://github.com/rrthomas/topiary ~/topiary && cd ~/topiary && cargo install --path topiary-cli + - run: | + npm install + npm run test-all