
* wip * tmp mig * add cron api key to header * feels safer * Revert "wip" This reverts commit 15a8358661c6785ce9eedb93a473a8829f79d760. * test * add name * normalize dates * maybe works * test * fixz * maybe fix ci * deprecated * step 1 -- raw sql * seems to work * migration seems to work * br * fix comment * timouet * disconnect prisma test * test order * maybs * seems to work * tz * tweak Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: Alex van Andel <me@alexvanandel.com>
72 lines
1.6 KiB
YAML
72 lines
1.6 KiB
YAML
name: Build
|
|
on: [push]
|
|
jobs:
|
|
build:
|
|
timeout-minutes: 5
|
|
name: Build on Node ${{ matrix.node }} and ${{ matrix.os }}
|
|
|
|
env:
|
|
DATABASE_URL: postgresql://postgres:@localhost:5432/calendso
|
|
NODE_ENV: test
|
|
BASE_URL: http://localhost:3000
|
|
JWT_SECRET: secret
|
|
services:
|
|
postgres:
|
|
image: postgres:12.1
|
|
env:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_DB: calendso
|
|
ports:
|
|
- 5432:5432
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
node: ["14.x"]
|
|
os: [ubuntu-latest]
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Use Node ${{ matrix.node }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- name: Install deps
|
|
uses: bahmutov/npm-install@v1
|
|
|
|
- name: Next.js cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ github.workspace }}/.next/cache
|
|
key: ${{ runner.os }}-nextjs
|
|
|
|
- run: yarn prisma migrate deploy
|
|
- run: yarn test
|
|
- run: yarn build
|
|
|
|
types:
|
|
name: Check types
|
|
|
|
strategy:
|
|
matrix:
|
|
node: ["14.x"]
|
|
os: [ubuntu-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Use Node ${{ matrix.node }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- name: Install deps
|
|
uses: bahmutov/npm-install@v1
|
|
|
|
- run: yarn check-changed-files
|