File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,22 @@ steps:
2222 image : node:18.19
2323 commands :
2424 - npm run check-format
25+ depends_on :
26+ - install
2527
2628 - name : lint
2729 image : node:18.19
2830 commands :
2931 - npm run lint
32+ depends_on :
33+ - install
3034
3135 - name : check-types
3236 image : node:18.19
3337 commands :
3438 - npm run check-types
39+ depends_on :
40+ - install
3541
3642 - name : test:unit
3743 image : node:18.19
@@ -321,15 +327,33 @@ steps:
321327 - voucher-subgraph-deployer
322328 # #### START LOCAL STACK END #####
323329
330+ - name : test:e2e
331+ image : node:18.19
332+ commands :
333+ - npm run test:prepare
334+ - npm run test:e2e
335+ depends_on :
336+ - install
337+ - stack-ready
338+
324339 - name : build
325340 image : node:18.19
326341 commands :
327342 - npm run build
343+ depends_on :
344+ - install
328345
329346 - name : npm-publish-dry-run
330347 image : node:18.19
331348 commands :
332349 - npm publish --dry-run
350+ depends_on :
351+ - format
352+ - lint
353+ - check-types
354+ - test:unit
355+ - test:e2e
356+ - build
333357
334358---
335359# sdk @iexec/web3mail publish npm nightly pipeline
You can’t perform that action at this time.
0 commit comments