Skip to content

docs: make Apps Script the clear default and sharpen beginner onboarding #14

docs: make Apps Script the clear default and sharpen beginner onboarding

docs: make Apps Script the clear default and sharpen beginner onboarding #14

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
name: Typecheck & test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test