Replace dependency com.github.tomakehurst:wiremock-jre8 with org.wire… #8152
This file contains hidden or 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: Build Frontend | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches-ignore: | |
- gh-pages | |
paths: | |
- services/frontend/** | |
# https://stackoverflow.com/a/72408109/16358266 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-and-test-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
# sync with deploy-frontend version | |
node-version: '22.x' | |
- run: cd services/frontend && npm ci | |
- run: cd services/frontend && npm run build | |
- run: cd services/frontend && npm run lint | |
- run: cd services/frontend && npm run ci |