Skip to content

Bump typescript from 4.2.3 to 5.8.3 #186

Bump typescript from 4.2.3 to 5.8.3

Bump typescript from 4.2.3 to 5.8.3 #186

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Cache node modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Install ESLint CLI
run: npm i -g eslint
- name: Run ESLint
run: eslint "src/**/*.ts"