Skip type checking within tests #14
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: Run linter and formatter on push | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Run linters and formatters | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: borales/actions-yarn@v4 | |
name: Install | |
with: | |
cmd: install | |
- uses: borales/actions-yarn@v4 | |
name: Build | |
with: | |
cmd: build | |
- uses: borales/actions-yarn@v4 | |
name: Format | |
with: | |
cmd: format | |
- uses: borales/actions-yarn@v4 | |
name: Lint | |
with: | |
cmd: lint |