We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79c187e commit 2dab187Copy full SHA for 2dab187
.github/workflows/nodejs.yml
@@ -80,13 +80,20 @@ jobs:
80
run: npm run test:lint
81
82
test-standard:
83
+ needs: [ 'build' ]
84
name: test standard
85
runs-on: ubuntu-latest
86
timeout-minutes: 10
87
steps:
88
- name: Checkout
89
# see https://github.com/actions/checkout
90
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
97
- name: Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
98
# see https://github.com/actions/setup-node
99
uses: actions/setup-node@v4
0 commit comments