Skip to content

Introduce "collection" projects for better usage of hierarchical view #2041 #524

Introduce "collection" projects for better usage of hierarchical view #2041

Introduce "collection" projects for better usage of hierarchical view #2041 #524

Workflow file for this run

name: Lint
on:
push:
branches:
- 'master' # Default branch
- 'feature-**' # Feature branches
pull_request:
branches:
- 'master' # Default branch
- 'feature-**' # Feature branches
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4.2.0
- name: Set up NodeJs
uses: actions/setup-node@v4.0.4
with:
node-version: '20'
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Lint Prettier
run: npm run prettier
continue-on-error: false
- name: Lint ESLint
run: npm run eslint
continue-on-error: true