Skip to content

Commit 5f50160

Browse files
Merge pull request #5237 from continuedev/dallin/jetbrains-config-yaml
build config yaml for jetbrains
2 parents 3a01e7f + f3061ec commit 5f50160

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/jetbrains-release.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,21 @@ jobs:
167167
path: gui/node_modules
168168
key: ${{ runner.os }}-node-${{ hashFiles('gui/package-lock.json') }}
169169

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+
170185
# npm install core
171186
- name: Install core node_modules
172187
run: |

0 commit comments

Comments
 (0)