Skip to content

Bump @typescript-eslint/eslint-plugin from 7.10.0 to 8.7.0 #193

Bump @typescript-eslint/eslint-plugin from 7.10.0 to 8.7.0

Bump @typescript-eslint/eslint-plugin from 7.10.0 to 8.7.0 #193

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- develop
push:
branches:
- develop
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Init npmrc
run: |
curl -H "X-JFrog-Art-API: ${{ secrets.ARTIFACTORY_API_KEY }}" https://linearb.jfrog.io/linearb/api/npm/npm-local/auth/linearb >> .npmrc
- name: Install Dependencies
run: npm ci
- name: Check Format
run: npm run format:check
- name: Lint
run: npm run lint
- name: Test
run: npm run test