
* Upgrades next-auth to v4 * Fixes next-auth session types * Type fixes * Fixes login issue * Team page fixes * Type fixes * Fixes secret * Adds test for forgotten password * Skips if pw secret is undefined * Prevents error if PW secret is undefined * Adds PLAYWRIGHT_SECRET explainer * Adds pending auth TODOs * Adds missing secret * Fixed imports * Fixed imports * Type fixes * Test fixes Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
77 lines
2 KiB
YAML
77 lines
2 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
|
|
PLAYWRIGHT_SECRET: ${{ secrets.CI_PLAYWRIGHT_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
|
|
# Generate a new cache whenever packages or source files change.
|
|
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
|
|
# If source files changed but packages didn't, rebuild from a prior cache.
|
|
restore-keys: |
|
|
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
|
|
|
|
- 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
|