Skip to content

Implement task priority and due date features in task management #2

Implement task priority and due date features in task management

Implement task priority and due date features in task management #2

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
env:
AUTH_SECRET: ci-build-secret-must-be-at-least-32-chars-long
DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/ci?schema=public
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Build
run: pnpm build