Skip to content

fix: ignore .d.ts files in eslint #4

fix: ignore .d.ts files in eslint

fix: ignore .d.ts files in eslint #4

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@v2
- name: Add problem matcher
run: echo "::add-matcher::.github/problemMatchers/eslint.json" && echo "::add-matcher::.github/problemMatchers/tsc.json"
- name: Use Node.js v16
uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
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