Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

chore: update actions/checkout action to v4 - abandoned #493

chore: update actions/checkout action to v4 - abandoned

chore: update actions/checkout action to v4 - abandoned #493

Workflow file for this run

name: ESLint
on:
push:
pull_request:
branches: [main]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
name: ESLint Check
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Lint
uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn run install:lint-dependencies
- run: yarn run lint