Improved GitHub issue templates and enabled root folder in the VSCode workspace #316
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 and Format | |
on: | |
pull_request: | |
branches: | |
- main | |
- '1.0.0' | |
paths-ignore: | |
- '**.md' | |
- 'website/**' | |
- '.github/**' | |
- '.vscode/**' | |
- 'packages/**/.vscode/**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: ./.github/actions/build | |
- name: Check linting | |
uses: ./.github/actions/call-rush | |
with: | |
command: 'lint:check -v' |