Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: publish Apache Wicket stories in Storybook #193

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,18 @@ jobs:
node-version-file: .nvmrc
cache: pnpm

- name: Setup Java version
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
with:
distribution: temurin
java-version: 21

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Maven build
run: pnpm run wicket:install-and-build

- name: "Continuous Integration: build"
env:
BASE_URL: "/rotterdam/"
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,10 @@
"update-major": "npm-check-updates --configFileName .ncurc.major.cjs",
"watch:storybook": "pnpm --filter @gemeente-rotterdam/storybook run storybook",
"watch:style-dictionary": "pnpm --filter @gemeente-rotterdam/design-tokens run watch",
"wicket:build": "mvn --offline clean install",
"wicket:build": "mvn --no-transfer-progress --offline clean install",
"wicket:install-and-build": "mvn --no-transfer-progress clean install",
"wicket:clean": "mvn clean",
"wicket:install": "mvn dependency:go-offline",
"wicket:install": "mvn --no-transfer-progress dependency:go-offline",
"wicket:dev": "mvn exec:java -pl :docs-wicket"
},
"dependencies": {
Expand Down
Loading