Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.21.0 in /packages/tiscord #641

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.21.0 in /packages/tiscord

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.21.0 in /packages/tiscord #641

Workflow file for this run

name: Build and lint
on: [push, pull_request]
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node v17
uses: actions/setup-node@v2
with:
node-version: 17
cache: npm
- name: Install dependencies
run: npm i
- name: Run ESLint
run: npm run lint
typescript:
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node v17
uses: actions/setup-node@v2
with:
node-version: 17
cache: npm
- name: Install dependencies
run: npm i
- name: Register Problem Matcher
run: echo "##[add-matcher].github/tsc.json"
- name: Run TypeScript compiler
run: npm run build