diagnostic: Fix false positive for interpolated dot expressions #166
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: jetls-client | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "jetls-client/**" | |
| - "src/**" | |
| - "scripts/schema/**" | |
| - ".github/workflows/jetls-client.yml" | |
| pull_request: | |
| branches-ignore: | |
| - release | |
| paths: | |
| - "jetls-client/**" | |
| - "src/**" | |
| - "scripts/schema/**" | |
| - ".github/workflows/jetls-client.yml" | |
| jobs: | |
| check: | |
| name: Check jetls-client | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install dependencies | |
| working-directory: jetls-client | |
| run: npm install | |
| - name: Run checks | |
| working-directory: jetls-client | |
| run: npm run check | |
| check_package_json: | |
| name: Check package.json is up to date | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: "1.12" | |
| arch: x64 | |
| - uses: julia-actions/cache@v2 | |
| - name: Instantiate schema project | |
| run: julia --startup-file=no --project=scripts/schema -e 'using Pkg; Pkg.instantiate()' | |
| - name: Check package.json is up to date | |
| run: | | |
| julia --startup-file=no --project=scripts/schema scripts/schema/update-pkg-json.jl jetls-client/package.json --check |