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.
2 parents 3a01e7f + f3061ec commit 5f50160Copy full SHA for 5f50160
.github/workflows/jetbrains-release.yaml
@@ -167,6 +167,21 @@ jobs:
167
path: gui/node_modules
168
key: ${{ runner.os }}-node-${{ hashFiles('gui/package-lock.json') }}
169
170
+ - uses: actions/cache@v4
171
+ id: config-yaml-cache
172
+ with:
173
+ path: packages/config-yaml/node_modules
174
+ key: ${{ runner.os }}-config-yaml-node-modules-${{ hashFiles('packages/config-yaml/package-lock.json') }}
175
+
176
+ - name: Build and check config-yaml
177
+ run: |
178
+ cd packages/config-yaml
179
+ npm i
180
+ npx tsc --noEmit
181
+ # Tests are currently failing, commenting out for now
182
+ # npm test
183
+ npm run build
184
185
# npm install core
186
- name: Install core node_modules
187
run: |
0 commit comments