Skip to content

styles: add more tag colors #1289

styles: add more tag colors

styles: add more tag colors #1289

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request_target:
jobs:
test:
runs-on: ubuntu-latest
env:
NOTION_KEY: ${{ secrets.NOTION_KEY }}
NOTION_DATABASE_ID_BLOG: ${{ secrets.NOTION_DATABASE_ID_BLOG }}
NOTION_PAGE_ID_JOB: ${{ secrets.NOTION_PAGE_ID_JOB }}
CLOUDINARY_NAME: ${{ secrets.CLOUDINARY_NAME }}
CLOUDINARY_API_KEY: ${{ secrets.CLOUDINARY_API_KEY }}
CLOUDINARY_API_SECRET: ${{ secrets.CLOUDINARY_API_SECRET }}
DRAFT_API_SECRET: ${{ secrets.DRAFT_API_SECRET }}
REVALIDATE_API_SECRET: ${{ secrets.REVALIDATE_API_SECRET }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Check type
run: npm run type-check
- name: Lint
run: npm run lint
- name: Format
run: npm run format