Skip to content

chore(deps): bump discord-api-types from 0.37.73 to 0.37.85 #857

chore(deps): bump discord-api-types from 0.37.73 to 0.37.85

chore(deps): bump discord-api-types from 0.37.73 to 0.37.85 #857

Workflow file for this run

name: Build and lint
on: [push, pull_request]
jobs:
lint:
name: linting and formatting
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 && npm run format
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 typecheck