Skip to content

chore(deps): update typescript-eslint monorepo to v6.5.0 #646

chore(deps): update typescript-eslint monorepo to v6.5.0

chore(deps): update typescript-eslint monorepo to v6.5.0 #646

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Tilman Vatteroth
#
# SPDX-License-Identifier: MIT
name: Lint and check code style
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Cache yarn cache
uses: actions/[email protected]
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-18-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-18
- name: Set up NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install --immutable
- name: Lint code
run: yarn lint