Skip to content

build(deps-dev): Bump @typescript-eslint/eslint-plugin from 5.61.0 to 7.7.1 #3304

build(deps-dev): Bump @typescript-eslint/eslint-plugin from 5.61.0 to 7.7.1

build(deps-dev): Bump @typescript-eslint/eslint-plugin from 5.61.0 to 7.7.1 #3304

Workflow file for this run

name: "ci"
on:
pull_request:
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
- run: npm ci --no-progress
- run: npm run build
- run: npm run lint
test:
name: Test using Node.js ${{ matrix.node }} running on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [16, 18, 20]
# TODO: Add windows-latest
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci --no-progress
- run: npm run build
- run: npm run test:ci