fix(deps): update dependency @types/node to v20.14.4 #1947
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: Build | |
on: | |
push: | |
jobs: | |
backend: | |
runs-on: ubuntu-latest | |
env: | |
AWS_ACCESS_KEY_ID: fake | |
AWS_SECRET_ACCESS_KEY: fake | |
AWS_ENDPOINT: http://localhost:4566 | |
AWS_REGION: eu-central-1 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Start containers | |
run: docker-compose -f "docker-compose.yml" up -d localstack opensearch-node1 azurite azurite_storage_init | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: maven | |
- name: Build and test backend | |
run: ./mvnw install | |
- name: Upload production artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: tapir | |
path: | | |
target/quarkus-app/ | |
retention-days: 3 | |
frontend: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: src/main/webui | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: install | |
run: yarn install | |
- name: lint | |
run: yarn lint | |
- name: test | |
run: yarn test | |