fix(rules): Resolve relative @ includes against source file directory #6222
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
| name: Continuous Integration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: ~ | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| nvim_tag: [nightly, v0.12.0, v0.11.0] | |
| name: ${{ matrix.os }} / ${{ matrix.nvim_tag }} | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| NVIM: ${{ matrix.os == 'windows-latest' && 'nvim-win64\\bin\\nvim.exe' || 'nvim' }} | |
| steps: | |
| - name: Checkout 📋 | |
| uses: actions/checkout@v6 | |
| - name: Install Tree-sitter 🌳 | |
| uses: tree-sitter/setup-action/cli@v2 | |
| - name: Prepare Neovim 🚧 | |
| env: | |
| NVIM_TAG: ${{ matrix.nvim_tag }} | |
| run: | | |
| bash ./scripts/dependencies.sh | |
| bash ./scripts/ci-install.sh | |
| - name: Run tests 🧪 | |
| run: | | |
| $NVIM --version | |
| make test | |