Skip to content

chore(deps-dev): bump eslint from 8.56.0 to 9.2.0 #126

chore(deps-dev): bump eslint from 8.56.0 to 9.2.0

chore(deps-dev): bump eslint from 8.56.0 to 9.2.0 #126

Workflow file for this run

name: Continuous Integration / Deployment
on:
push:
branches:
- '**'
pull_request:
jobs:
testing:
name: ESLint and TypeScript compilation
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Add problem matcher
run: echo "::add-matcher::.github/problemMatchers/eslint.json" && echo "::add-matcher::.github/problemMatchers/tsc.json"
- name: Install Node v18
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
- name: Check lint on twitch-api-types
run: npm run test:lint
- name: Run TSC
run: npm run build:ci