Skip to content

Merge b67c6f86223805909cdd176be2ffedcb6f057356 into feature/release-org #3192

Merge b67c6f86223805909cdd176be2ffedcb6f057356 into feature/release-org

Merge b67c6f86223805909cdd176be2ffedcb6f057356 into feature/release-org #3192

Workflow file for this run

name: Formatting
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2-beta
with:
node-version: '14'
- name: Determine Node Version
id: node-version
run: |
echo "::set-output name=ver::$(node --version)"
- uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ steps.node-version.outputs.ver }}-${{ hashFiles('package.json', 'yarn.lock') }}
- name: Install Packages
run: |
yarn install
- name: prettier
run: |
npx prettier "**/*.{cls,apex,js,html,md,yml,yaml,json}" --check