Skip to content

stricter checks for unused #1020

stricter checks for unused

stricter checks for unused #1020

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 22.x
uses: actions/[email protected]
with:
node-version: 22.x
- run: npm install
- run: npm run typecheck
build:
runs-on: ubuntu-latest
needs: typecheck
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present