Skip to content

Commit f5ddae7

Browse files
authored
Merge pull request #23 from Xarthisius/test
Building UI is not necessary for tests
2 parents b7a76d7 + c550b39 commit f5ddae7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build-test.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,21 @@ jobs:
2727
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
30+
- name: Set up Node.js
31+
uses: actions/setup-node@v4
32+
with:
33+
node-version: 18
3034
- name: Checkout repo
3135
uses: actions/checkout@v4
3236
- name: Install dependencies
3337
run: |
3438
python -m pip install --upgrade pip
3539
python -m pip install tox
40+
- name: Build web components
41+
run: |
42+
cd girder_jsonforms/web_client
43+
npm ci
44+
npm run build
3645
- name: Cache tox environments
3746
uses: actions/cache@v4
3847
with:

0 commit comments

Comments
 (0)