Feat/alias command #15
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
branches: ["master"] | |
paths: | |
- "*/**/*.ts" | |
- "*/**/*.js" | |
- "*/**/*.sql" | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-22.04 | |
services: | |
postgres: | |
image: postgres:13 | |
env: | |
POSTGRES_USER: admin | |
POSTGRES_PASSWORD: secret | |
POSTGRES_DB: labsyncro | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Create .env | |
run: | | |
echo "DATABASE_URL=postgresql://admin:secret@localhost:5432/labsyncro?sslmode=disable" >> .env | |
- name: Install deps | |
run: bun install | |
- name: Migrate db | |
run: bun db:migrate | |
- name: Build | |
run: bun run build | |
- name: Lint | |
run: bun run lint |