Skip to content

Bump @typescript-eslint/parser from 6.20.0 to 7.14.1 #914

Bump @typescript-eslint/parser from 6.20.0 to 7.14.1

Bump @typescript-eslint/parser from 6.20.0 to 7.14.1 #914

Workflow file for this run

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@v4
- uses: actions/setup-node@v4
with:
node-version: 20
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-runner version
- run: cd test && ./sbt compile && ./foo.sh
shell: bash