Update libs and how checks are performed #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |