chore(deps): update dependency rollup to v3.27.0 #2459
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: Format code | |
on: [push, pull_request] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Run format | |
run: yarn format | |
- name: Commit changes | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: 'chore: apply formatting changes' | |
branch: ${{ github.head_ref }} |