Skip to content

Bump @typescript-eslint/eslint-plugin from 5.57.1 to 5.60.0 #47

Bump @typescript-eslint/eslint-plugin from 5.57.1 to 5.60.0

Bump @typescript-eslint/eslint-plugin from 5.57.1 to 5.60.0 #47

Workflow file for this run

on: [pull_request]
name: CI
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# GitHub action for Node.JS.
# https://github.com/actions/setup-node
- uses: actions/setup-node@v2
with:
node-version: "16.13.2"
check-latest: true
# Run `npm ci` to install the app's dependencies.
- name: Install dependencies
run: npm ci
# Run the TypeScript build.
- name: Compile TypeScript
run: npm run build