Skip to content

rename: add YYYY-MM-DD prefix to all blog post filenames for sort #17

rename: add YYYY-MM-DD prefix to all blog post filenames for sort

rename: add YYYY-MM-DD prefix to all blog post filenames for sort #17

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint-and-typecheck:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.12.0'
cache: 'npm'
- run: npm ci
- name: Type check
run: npm run type-check
- name: Lint
run: npm run lint