We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 722866d commit 44004e7Copy full SHA for 44004e7
1 file changed
.github/workflows/ci.yaml
@@ -113,11 +113,17 @@ jobs:
113
114
- name: Generate (branch)
115
working-directory: branch
116
- run: npm run test:gen
+ run: |
117
+ # Change following line to just `npm -C cli install` after #214 is merged
118
+ [ ! -d cli ] || npm -C cli install
119
+ npm run test:gen
120
121
- name: Generate (main)
122
working-directory: main
- run: npm run test:gen || true # We don't want to block on main failing to generate
123
124
125
126
+ npm run test:gen || true # We don't want to block on main failing to generate
127
128
- name: Diff the outputs
129
run: |
0 commit comments