Skip to content

Add animekai

Add animekai #269

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Build Anify
on:
push:
branches: [ "main", "v2" ]
pull_request:
branches: [ "main", "v2" ]
env:
IS_WORKFLOW: true
NODE_ENV: test
DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/anify?schema=public"
REDIS_URL: "redis://localhost:6379"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- run: bun run install
- run: bun run lint
- run: bun run build
- run: bun run test