From 41e44b07b33e6da8eaf9d3d1c3b5896704142b47 Mon Sep 17 00:00:00 2001 From: Jannis Baum Date: Mon, 26 Aug 2024 10:54:20 -0500 Subject: [PATCH] ci: fix dependencies --- .github/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ee6fe6e..10a6aa4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,6 +26,7 @@ jobs: test: name: Test + needs: [lint] runs-on: ubuntu-latest steps: - name: set up node @@ -39,7 +40,7 @@ jobs: build-linux: name: Build Linux - needs: [lint] + needs: [test] runs-on: ubuntu-latest steps: - name: checkout @@ -60,7 +61,7 @@ jobs: build-macos: name: Build MacOS - needs: [lint] + needs: [test] runs-on: macos-latest steps: - name: checkout