Skip to content

chore(deps): update typescript-eslint monorepo to v8 #2395

chore(deps): update typescript-eslint monorepo to v8

chore(deps): update typescript-eslint monorepo to v8 #2395

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on: [push]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install project dependencies
run: npm install
- name: Lint check
run: npm run lint
- name: Type check
run: npm run type-check
- name: Unit test
run: npm run test