Skip to content

Bump @typescript-eslint/parser from 4.33.0 to 8.7.0 #5007

Bump @typescript-eslint/parser from 4.33.0 to 8.7.0

Bump @typescript-eslint/parser from 4.33.0 to 8.7.0 #5007

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- README.md
- .gitignore
- .github/**
jobs:
build:
runs-on: ${{ matrix.os }}
if: contains(github.ref, 'master')
strategy:
matrix:
node-version: [20.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- name: npm install, build, and test
run: |
export NODE_OPTIONS=--openssl-legacy-provider
npm install
npm run test
env:
CI: true