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.
TEST_DIST
1 parent 2fa1108 commit 868df32Copy full SHA for 868df32
.github/workflows/test-codegen.yml
@@ -25,7 +25,7 @@ jobs:
25
- 'yarn.lock'
26
27
build:
28
- needs: changes
+ needs: [changes]
29
if: ${{ needs.changes.outputs.codegen == 'true' }}
30
31
defaults:
@@ -69,7 +69,7 @@ jobs:
69
run: ls -R
70
71
test:
72
- needs: build
+ needs: [build]
73
74
run:
75
working-directory: ./packages/rtk-query-codegen-openapi
@@ -109,6 +109,8 @@ jobs:
109
110
- name: Run tests
111
run: yarn test
112
+ env:
113
+ TEST_DIST: true
114
115
- name: Did we fail?
116
if: failure()
0 commit comments