OPHYK-208 enable access log in all environments #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: henkilo-ui | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "21" | |
distribution: "corretto" | |
cache: "maven" | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
cache: "npm" | |
cache-dependency-path: henkilo-ui/src/main/static/package-lock.json | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Cache playwright browsers | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/ms-playwright | |
key: ${{ runner.os }}-pw-browsers | |
restore-keys: ${{ runner.os }}-pw-browsers | |
- name: Build frontend | |
working-directory: henkilo-ui/src/main/static | |
run: | | |
npm ci | |
npm run lint | |
npm run prettier | |
npm run e2e:install-deps | |
CI=true npm run e2e:ci | |
npm run build | |
- name: Upload e2e test artifact | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-results | |
path: henkilo-ui/src/main/static/playwright-results | |
retention-days: 10 | |
- name: Build backend | |
working-directory: henkilo-ui | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: mvn clean install -B -Dbranch=$GITHUB_REF_NAME -Drevision=$GITHUB_SHA -DbuildNumber=$GITHUB_RUN_NUMBER/$GITHUB_RUN_ATTEMPT org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=Opetushallitus_henkilo-ui | |
- name: Upload henkilo-ui-jar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: henkilo-ui-jar | |
path: henkilo-ui/target/henkiloui-*.jar |