Bump @typescript-eslint/parser from 6.20.0 to 8.49.0 #1092
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: 'build-test' | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: 'npm' | |
| - name: Build | |
| shell: bash -l {0} | |
| run: | | |
| npm ci | |
| test "$OSTYPE" != "msys" || npm run format | |
| npm run all | |
| - uses: ./ | |
| with: | |
| root: test | |
| extraFiles: test/foo.sh # for the ammonite version? | |
| - run: cd test && eval "$(./cs java --env --jvm 17)" && ./mill -i __.compile && ./foo.sh | |
| if: runner.os != 'Windows' | |
| shell: bash | |
| - run: cd test && eval "$(./cs java --env --jvm 17)" && cmd /c "mill.bat -i __.compile" && ./foo.sh | |
| if: runner.os == 'Windows' | |
| shell: bash |