Skip to content

feat: sync plans between devices #20

feat: sync plans between devices

feat: sync plans between devices #20

Workflow file for this run

name: CI Backend
on:
push:
branches: ["main"]
paths:
- "backend/**"
pull_request:
branches: ["main"]
paths:
- "backend/**"
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: Install deps
run: npm ci
- name: Lint
run: npm run lint
if: always()
- name: Type check
run: npm run typecheck
if: always()
- name: Run Test Build
run: npm run build
env:
NODE_ENV: production
PORT: 3333
HOST: 0.0.0.0
LOG_LEVEL: debug
APP_KEY: really-hard-secret-key-to-guess
SESSION_DRIVER: cookie
DB_HOST: localhost
DB_PORT: 5432
DB_USER: postgres
DB_DATABASE: postgres
DB_PASSWORD: postgres
USOS_CONSUMER_KEY: test
USOS_CONSUMER_SECRET: test
if: always()