Skip to content

Commit 2dab187

Browse files
committed
wip
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 79c187e commit 2dab187

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/nodejs.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,20 @@ jobs:
8080
run: npm run test:lint
8181

8282
test-standard:
83+
needs: [ 'build' ]
8384
name: test standard
8485
runs-on: ubuntu-latest
8586
timeout-minutes: 10
8687
steps:
8788
- name: Checkout
8889
# see https://github.com/actions/checkout
8990
uses: actions/checkout@v4
91+
- name: fetch build artifact
92+
# see https://github.com/actions/download-artifact
93+
uses: actions/download-artifact@v4
94+
with:
95+
name: dist.d
96+
path: dist.d
9097
- name: Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
9198
# see https://github.com/actions/setup-node
9299
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)