Skip to content

feat: initial commit #8

feat: initial commit

feat: initial commit #8

Workflow file for this run

name: CI
on:
push:
permissions:
contents: read
jobs:
build:
name: Lint and Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Build site
run: npm run build