Run prettier corrections #378
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI for features | |
on: | |
push: | |
branches: | |
- feature/* | |
jobs: | |
dev: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.15 | |
- run: | | |
npm install -g yarn | |
yarn install | |
- name: Run linter | |
run: yarn workspaces foreach run lint | |
env: | |
CI: true | |
- name: Run prettier | |
run: yarn run check-format | |
env: | |
CI: true | |
- name: verify docs were not updated | |
run: | | |
git checkout develop | |
git checkout - | |
git diff develop HEAD --exit-code --quiet -- docs |