build(deps-dev): bump @solvro/config from 1.13.4 to 1.13.6 #184
Workflow file for this run
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: Backend - CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/backend_ci.yaml" | |
| - "*" | |
| - "backend/**" | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/backend_ci.yaml" | |
| - "*" | |
| - "backend/**" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: backend | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install deps | |
| run: npm ci | |
| - name: Set up AdonisJS environment | |
| run: | | |
| cp .env.development .env | |
| node ace generate:key | |
| - name: Lint | |
| run: npm run lint | |
| if: always() | |
| - name: Format | |
| run: npm run format:check | |
| if: always() | |
| - name: Type check | |
| run: npm run typecheck | |
| if: always() | |
| - name: Run Test Build | |
| run: npm run build | |
| if: always() |