Skip to content

fix(backend): improve stubs paths #1180

fix(backend): improve stubs paths

fix(backend): improve stubs paths #1180

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'hetzner/*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
name: Lint app and run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
cache: npm
- run: npm ci --prefer-offline --no-audit
- uses: actions/cache@v4
with:
path: .turbo
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
turbo-${{ github.job }}-${{ github.ref_name }}-
- run: npm run build
- run: npm run check:types
- run: npm run lint
- run: npm run test