Skip to content

Maintenance

Maintenance #170

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["**"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js from .tool-versions
uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: "npm"
- run: npm ci
- run: npm run typecheck
- run: npm run format:check
- run: npm run lint
- run: npm run build
- run: npm run test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}