Skip to content

Bump @typescript-eslint/eslint-plugin from 5.59.11 to 6.7.5 #398

Bump @typescript-eslint/eslint-plugin from 5.59.11 to 6.7.5

Bump @typescript-eslint/eslint-plugin from 5.59.11 to 6.7.5 #398

Workflow file for this run

name: ci
on: push
jobs:
build:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v2
- name: install-nodejs
uses: actions/setup-node@v1
with:
node-version: 15.x
- name: install-deps
run: make install
- name: test-with-xvfb
run: xvfb-run -a npm test
if: runner.os == 'Linux'
- name: test
run: npm test
if: runner.os != 'Linux'