Skip to content

Commit

Permalink
Fix configurationserver ui dependencies/yarn/node mismatch (#1541)
Browse files Browse the repository at this point in the history
* increase yarn and node version to fix compatibility issuesissues

* add github action step to build configurationserver

* change order of steps in github actions
  • Loading branch information
Heiko Holz authored Nov 15, 2022
1 parent 741434e commit 6b9c5d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/configurationserver_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- name: assemble
run: ../../gradlew assemble
working-directory: ${{env.working-directory}}
- name: Build jar with frontend
working-directory: ${{env.working-directory}}
run: ../../gradlew bootJarWithFrontend
- name: test
run: ../../gradlew test
working-directory: ${{env.working-directory}}
working-directory: ${{env.working-directory}}
4 changes: 2 additions & 2 deletions components/inspectit-ocelot-configurationserver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ apply plugin: 'io.spring.dependency-management'

node {
// Version of node to use.
version = '12.16.1'
version = '12.22.0'

// Version of npm to use.
npmVersion = '6.13.4'

// Version of Yarn to use.
yarnVersion = '1.16.0'
yarnVersion = '1.22.0'

// If true, it will download node using above parameters.
// If false, it will try to use globally installed node.
Expand Down

0 comments on commit 6b9c5d1

Please sign in to comment.