Skip to content

Update libs and how checks are performed #21

Update libs and how checks are performed

Update libs and how checks are performed #21

Workflow file for this run

name: 'Test things'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- develop
- 'releases/*'
workflow_dispatch:
jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- uses: milespetrov/status-checks@main
with:
ts-errors: 0
lint-command: 'npm run lint:check'
gh-token: ${{ secrets.GITHUB_TOKEN }}