Skip to content

fix linting issues

fix linting issues #37

Workflow file for this run

name: Quality Checks
env:
NODE_VERSION: 20.15.0
PNPM_VERSION: 9.4.0
APP_ENV: development
on:
push:
branches:
- main
- 'update-deps/*'
pull_request:
branches:
- main
- 'update-deps/*'
concurrency:
group: checkCodeQuality-${{ github.ref }}
cancel-in-progress: true
jobs:
checkCodeQuality:
name: 'Lint, Build & Test'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'Setup project'
uses: ./.github/actions/setup-project
- name: 'Check code quality'
uses: ./.github/actions/check-quality