Skip to content

2.0.0

2.0.0 #13

Workflow file for this run

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