Skip to content

Init: add next-steps guide with registration URL and example prompt #11

Init: add next-steps guide with registration URL and example prompt

Init: add next-steps guide with registration URL and example prompt #11

Workflow file for this run

name: Validate
on:
pull_request:
push:
branches:
- main
jobs:
typecheck-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run typecheck
- run: npm run build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm test
pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm pack --dry-run