chore(deps): update dependency eslint to v9 #1486
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
# SPDX-FileCopyrightText: 2023 HH Partners | |
# | |
# SPDX-License-Identifier: MIT | |
name: Unittest | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
unittest: | |
name: Unit testing | |
runs-on: ubuntu-latest | |
environment: unittest-environment | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.13.1 | |
cache: "npm" | |
- name: Install dependencies | |
run: npm ci | |
- name: Run prisma generate | |
run: npm run db:generate | |
env: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
- name: Build project | |
run: npm run build | |
env: | |
NODE_ENV: test | |
NEXT_PUBLIC_API_URL: http://localhost:5000 | |
KEYCLOAK_URL: https://keycloak.example.com | |
KEYCLOAK_REALM: example | |
KEYCLOAK_CLIENT_ID_UI: example-ui | |
KEYCLOAK_CLIENT_SECRET_UI: example-ui-secret | |
- name: Run tests | |
run: npm run test | |
continue-on-error: false | |
env: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
SCANNER_URL: ${{ secrets.SCANNER_URL }} |