Skip to content

Bump @typescript-eslint/parser from 5.59.7 to 5.60.1 #252

Bump @typescript-eslint/parser from 5.59.7 to 5.60.1

Bump @typescript-eslint/parser from 5.59.7 to 5.60.1 #252

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: Run tests
strategy:
matrix:
node-version: [14, 16]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Setup NPM v7
run: npm install -g npm@7
- name: Log NPM version
run: |
npm --version &&
npm list -g --depth 0
- run: npm ci
- run: npm test