Skip to content

Commit

Permalink
Build UI before e2e tests again. Seems not to be working otherwise
Browse files Browse the repository at this point in the history
  • Loading branch information
c8y3 committed Jan 31, 2025
1 parent b0ee091 commit 09c3f7c
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,24 +103,6 @@ jobs:
name: iriswebapp_app
path: ${{ runner.temp }}/iriswebapp_app.tar

build-ui:
name: Build user interface
runs-on: ubuntu-22.04
steps:
- name: Check out iris
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: |
ui/package-lock.json
- name: Build ui to be mounted in development docker
working-directory: ui
run: |
npm ci
npm run build
build-graphql-documentation:
name: Generate graphQL documentation
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -224,7 +206,13 @@ jobs:
node-version: 20
cache: npm
cache-dependency-path: |
ui/package-lock.json
e2e/package-lock.json
- name: Build ui to be mounted in development docker
working-directory: ui
run: |
npm ci
npm run build
- name: Install e2e dependencies
working-directory: e2e
run: npm ci
Expand Down

0 comments on commit 09c3f7c

Please sign in to comment.