Update all non-major dependencies [apps/app] #369
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: Basic Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: 'lint and test' | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:16 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: ts-starter | |
ports: | |
- 5456:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 1s | |
--health-timeout 5s | |
--health-retries 30 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- run: corepack enable | |
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version-file: .tool-versions | |
cache: pnpm | |
cache-dependency-path: ./pnpm-lock.yaml | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --ignore-scripts | |
- name: generate prisma client | |
run: pnpm --filter api-hono postinstall | |
- name: eslint and biome check | |
run: pnpm lint | |
- name: tsc | |
run: pnpm typecheck | |
- name: test | |
run: pnpm test |