Skip to content

Update typescript-eslint monorepo to v5.62.0 - autoclosed #348

Update typescript-eslint monorepo to v5.62.0 - autoclosed

Update typescript-eslint monorepo to v5.62.0 - autoclosed #348

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: lint
# Controls when the action will run.
on: [push, pull_request, workflow_dispatch]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Node.js dependencies
run: yarn
- name: Cache
uses: actions/cache@v3.0.11
with:
# An explicit key for restoring and saving the cache
path: metasearch
key: ${{ runner.os }}-metasearch
- name: ESlint
run: yarn run eslint:github-action