Skip to content

Feature/categories list #13

Feature/categories list

Feature/categories list #13

Workflow file for this run

name: CI
on:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
setup:
uses: zhumeisongsong/shared-actions/.github/workflows/reusable-pnpm-setup.yml@main
lint:
needs: setup
uses: zhumeisongsong/shared-actions/.github/workflows/reusable-eslint.yml@main
type-check:
needs: setup
uses: zhumeisongsong/shared-actions/.github/workflows/reusable-ts-type-check.yml@main
build:
needs: [lint, type-check]
uses: zhumeisongsong/shared-actions/.github/workflows/reusable-nextjs-build.yml@main