From 474c03a11e2a76e7094439700e838a6c74ed8bec Mon Sep 17 00:00:00 2001 From: Github Actions Date: Tue, 19 Sep 2023 10:49:05 -0500 Subject: [PATCH] ci: added prettier formater aswell --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 73708056f..2e6f69964 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 github-actions@github.com npm version patch -m "ci: bump version to %s"