Merge pull request #33 from DimensionDev/fix/naming #93
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: Prettier | |
on: | |
push: | |
branhces: | |
- '**' | |
- '!main' | |
- '!released' | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Authenticate NPM | |
uses: DimensionDev/github-token-action@latest | |
with: | |
registry: true | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version-file: '.node-version' | |
- uses: pnpm/action-setup@v2 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Check code style with Prettier | |
run: npx prettier . -w | |
- name: Check for changes in src/* | |
id: check-changes | |
run: echo "::set-output name=changes::$(git diff --name-only -- 'src/*')" | |
- name: Commit changes if any | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: 'chore: prettier' |