generated from isoppp/remix-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (42 loc) · 1.13 KB
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 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