Update typescript-eslint monorepo to v8.6.0 #2902
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build_test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc | |
- name: Install Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 | |
with: | |
node-version: ${{ matrix.node-version }} | |
check-latest: true | |
- name: Cache Dependencies | |
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Install Dependencies | |
run: yarn install | |
- name: Run Linting | |
run: yarn lint | |
- name: Run Unit Tests | |
run: yarn test |