Skip to content

feat: add quick create button on homepage #307

feat: add quick create button on homepage

feat: add quick create button on homepage #307

Workflow file for this run

name: build
on: [push]
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn lint
- uses: hadolint/[email protected]
with:
dockerfile: ./infra/Dockerfile-backend
- uses: hadolint/[email protected]
with:
dockerfile: ./infra/Dockerfile-frontend
test:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
# pull so that testcontainers doesn't have to, timing out tests.
- run: docker compose -f compose.dev.yaml pull postgres redis
- run: yarn install --frozen-lockfile
- run: yarn test