Skip to content

feat: add opengraph tags #34

feat: add opengraph tags

feat: add opengraph tags #34

Workflow file for this run

name: Continuous Integration
on: push
jobs:
check:
runs-on: ubuntu-latest
name: Check
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "npm"
- run: npm ci
- run: npm run check
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "npm"
- run: npm ci
- run: npm run lint
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "npm"
- run: npm ci
- run: npm run test