Skip to content

Commit

Permalink
ci: fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jannis-baum committed Aug 26, 2024
1 parent d45eeb8 commit 41e44b0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:

test:
name: Test
needs: [lint]
runs-on: ubuntu-latest
steps:
- name: set up node
Expand All @@ -39,7 +40,7 @@ jobs:

build-linux:
name: Build Linux
needs: [lint]
needs: [test]
runs-on: ubuntu-latest
steps:
- name: checkout
Expand All @@ -60,7 +61,7 @@ jobs:

build-macos:
name: Build MacOS
needs: [lint]
needs: [test]
runs-on: macos-latest
steps:
- name: checkout
Expand Down

0 comments on commit 41e44b0

Please sign in to comment.