Skip to content

Fix eligibility check for banned/suspended nodes (#439) #1034

Fix eligibility check for banned/suspended nodes (#439)

Fix eligibility check for banned/suspended nodes (#439) #1034

Workflow file for this run

name: 'CI'
on:
push:
branches:
- main
- develop
tags:
- '**'
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 'v20.16.0'
- name: Cache node_modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: ~/.yarn
key: ${{ runner.os }}-lint-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-lint-${{ env.cache-name }}-
- run: corepack enable
- run: yarn install --immutable
- run: yarn lint