Skip to content

refactor: replace PNG assets with SVG for thumbnail and hero images #167

refactor: replace PNG assets with SVG for thumbnail and hero images

refactor: replace PNG assets with SVG for thumbnail and hero images #167

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install Dependencies
run: rm -rf node_modules package-lock.json && npm install
- name: Check Formatting
run: npm run prettier-check
- name: Validate Data
run: npm run validate-data
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build