Skip to content

Bump @typescript-eslint/eslint-plugin from 7.0.0 to 8.6.0 #4518

Bump @typescript-eslint/eslint-plugin from 7.0.0 to 8.6.0

Bump @typescript-eslint/eslint-plugin from 7.0.0 to 8.6.0 #4518

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: OMA3-CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [main]
pull_request:
branches: [main]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2.1.2
with:
node-version: 20.x
- run: npm ci
- run: npm run test-all
env:
CI: true