Build upgrades #1
Workflow file for this run
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: Lint DotNet | |
on: | |
pull_request: | |
types: [edited, opened, reopened, synchronize, ready_for_review] | |
jobs: | |
build: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/parts/cache/ | |
- name: 'Prepare for linting' | |
run: | | |
dotnet build -t:PrepareLint | |
- name: 'Run JS lint checks' | |
run: | | |
pnpm lint |