Skip to content

Bump @typescript-eslint/eslint-plugin from 6.6.0 to 6.19.1 (#40) #81

Bump @typescript-eslint/eslint-plugin from 6.6.0 to 6.19.1 (#40)

Bump @typescript-eslint/eslint-plugin from 6.6.0 to 6.19.1 (#40) #81

Workflow file for this run

name: Checks
on:
push:
branches:
- master
- release
pull_request:
jobs:
lint:
runs-on: [ self-hosted, small ]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Display Node.js version
run: node --version
- name: Lint
run: npm run lint
tests:
runs-on: [ self-hosted, small ]
env:
NODE_ENV: test_lib
strategy:
matrix:
node-version: [ 16.x, 18.x, 20.x, 21.x ]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- uses: browser-actions/setup-chrome@latest
- name: Display Chrome version
run: chrome --version
- name: Display Node.js version
run: node --version
- name: Run tests
run: npm run test