build(deps-dev): bump @types/bun from 1.3.11 to 1.3.13 #86
Workflow file for this run
This file contains hidden or 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
| # This github action checks if the grammar(s) in this repo will compile with the latest version of linguist. | |
| name: Linguist Compilation Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| compile-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout linguist | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: github-linguist/linguist | |
| - name: Checkout PR as submodule | |
| uses: actions/checkout@v6 | |
| with: | |
| path: vendor/grammars/vscode-vba | |
| clean: false | |
| - name: Compile linguist grammar | |
| run: script/grammar-compiler add vendor/grammars/vscode-vba |