Skip to content

Feature/favorites view #63

Feature/favorites view

Feature/favorites view #63

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npx eslint src/
- run: npx prettier --check "**/*.{ts,js,mjs,json,md,yml,yaml}"
- run: npx tsc --noEmit
- run: npx vitest run
- run: npx markdownlint-cli2 "**/*.md"
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build