Skip to content

build(deps-dev): bump the minors-dev group across 1 directory with 10 updates #235

build(deps-dev): bump the minors-dev group across 1 directory with 10 updates

build(deps-dev): bump the minors-dev group across 1 directory with 10 updates #235

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20, 22]
ts-version: ["4.7", "5.0", "5.4"]
ts-eslint-version: [5, 6, 7]
eslint-version: [8, 9]
flat-config: ["true", ""]
exclude:
- eslint-version: 8
flat-config: "true"
- node-version: 16
ts-eslint-version: 7
- node-version: 16
eslint-version: 9
- ts-version: "5.4"
ts-eslint-version: 5
- ts-version: "5.4"
ts-eslint-version: 6
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
- run: |
npm install -D typescript@${{ matrix.ts-version }} \
eslint@${{ matrix.eslint-version }} \
@typescript-eslint/eslint-plugin@${{ matrix.ts-eslint-version }} \
@typescript-eslint/parser@${{ matrix.ts-eslint-version }} \
--legacy-peer-deps
- run: npm test
env:
TEST_FLAT_CONFIG: ${{ matrix.flat-config }}