fix(deps): update dependency electron-updater to v6.3.9 #42
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
on: | |
- push | |
concurrency: | |
group: format-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: latest | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 # Need for npm >=7.7 | |
cache: 'pnpm' | |
- run: pnpm run format | |
- run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add --all | |
git diff-index --quiet HEAD || git commit -m "style: format code" | |
git push |