Skip to content

docs: add CI, license and release badges to README #3

docs: add CI, license and release badges to README

docs: add CI, license and release badges to README #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Type check
run: npx astro check
- name: Build
run: npm run build