Skip to content

fix: use non-enumerable property to bypass eslintrc validation #286

fix: use non-enumerable property to bypass eslintrc validation

fix: use non-enumerable property to bypass eslintrc validation #286

Workflow file for this run

name: Check
on:
push:
branches:
- "main"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn
- name: Install Dependencies
run: yarn --immutable
- name: ESLint - flat
run: yarn test:eslint
- name: ESLint - eslintrc
run: yarn test:eslint
env:
ESLINT_USE_FLAT_CONFIG: "false"
- name: Prettier
run: yarn prettier --check .