Skip to content

chore: prepare @liferay/prettier-plugin v1.1.2 release #1679

chore: prepare @liferay/prettier-plugin v1.1.2 release

chore: prepare @liferay/prettier-plugin v1.1.2 release #1679

Workflow file for this run

# Based on: https://github.com/actions/starter-workflows/blob/master/ci/node.js.yml
name: format
on:
push:
branches: [master]
pull_request:
branches: [master]
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 }} format:check