Skip to content

chores and ref target #36

chores and ref target

chores and ref target #36

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [24]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: "Test: typings"
run: "npm run test:typings"
- name: "Test: TS/JS linting + formatting"
run: "npm run test:lint"
- name: "Build"
run: npm run build
- name: "Publint"
run: npm run publint
- name: "Are the types wrong?"
run: npm run attw -P