Skip to content

patch release 5.6.1 #286

patch release 5.6.1

patch release 5.6.1 #286

Workflow file for this run

name: Lint Anatomy
# Controls when the action will run.
on:
# Triggers the workflow on pull request events on main and develop
pull_request:
branches: [main, develop]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js dependencies
run: npm ci
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
eslint_extensions: js,ts,tsx
prettier: true
stylelint: true
stylelint_extensions: css,scss