Skip to content

fix(prettier-plugin): add rules for if/else new line and fix issues when formatting in portal #1652

fix(prettier-plugin): add rules for if/else new line and fix issues when formatting in portal

fix(prettier-plugin): add rules for if/else new line and fix issues when formatting in portal #1652

Workflow file for this run

# Based on: https://github.com/actions/starter-workflows/blob/master/ci/node.js.yml
name: lint
on:
push:
branches: [master]
paths-ignore:
- 'guidelines/css/**'
- 'guidelines/dxp/**'
- 'guidelines/general/**'
pull_request:
branches: [master]
paths-ignore:
- 'guidelines/css/**'
- 'guidelines/dxp/**'
- 'guidelines/general/**'
env:
CI: true
yarn-cache-name: yarn-cache-3
yarn-cache-path: .yarn
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Use or update Yarn cache
uses: actions/cache@v2
with:
path: ${{ env.yarn-cache-path }}
key: ${{ runner.os }}-${{ env.yarn-cache-name }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn --cache-folder=${{ env.yarn-cache-path }} --frozen-lockfile
- run: yarn --cache-folder=${{ env.yarn-cache-path }} lint