Skip to content

chore: update react and astro #200

chore: update react and astro

chore: update react and astro #200

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: ci
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test
- run: |
for dir in examples/*/; do
(cd "$dir" && npm ci && npm run build)
done