Skip to content

Commit 06a2b0e

Browse files
committed
Fix placement of needs
1 parent 8e0e732 commit 06a2b0e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ jobs:
5555
test:
5656
name: Run tests
5757
runs-on: ubuntu-latest
58-
needs:
59-
- compile
60-
- lint
61-
- test
6258
strategy:
6359
matrix:
6460
node-version: [14.x, 15.x]
@@ -85,6 +81,10 @@ jobs:
8581
publish:
8682
name: Publish to npm
8783
runs-on: ubuntu-latest
84+
needs:
85+
- compile
86+
- lint
87+
- test
8888
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
8989
steps:
9090
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)