CI: Run prettier in bump-version workflow (#92195)

Run prettier
This commit is contained in:
Andreas Christou 2024-08-27 20:21:51 +01:00 committed by GitHub
parent 85cd9cbe25
commit 931d64b8fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,6 +72,7 @@ func WithUpdatedVersion(d *dagger.Client, src *dagger.Directory, nodeVersion, ve
WithExec([]string{"npm", "version", version, "--no-git-tag-version"}).
WithExec([]string{"yarn", "run", "lerna", "version", version, "--no-push", "--no-git-tag-version", "--force-publish", "--exact", "--yes"}).
WithExec([]string{"yarn", "install"}).
WithExec([]string{"yarn", "prettier:write"}).
Directory("/src").
WithoutDirectory("node_modules")
}