Skip to content

Commit

Permalink
ci: added prettier formater aswell
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions committed Sep 19, 2023
1 parent 98d3fa6 commit 474c03a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ jobs:
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Build and Version
- name: Prettier, Build and Version
run: |
yarn run format
git add ./src
git commit -m "ci: prettier format"
git push --set-upstream origin master
git config user.name 'Github Actions'
git config user.email [email protected]
npm version patch -m "ci: bump version to %s"
Expand Down

0 comments on commit 474c03a

Please sign in to comment.