Feat/location form #25
Workflow file for this run
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
# This action will run the code formatter once a pull request is closed that targets main | |
name: Code Formatter | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: ['main'] | |
env: | |
NODE_VERSION: '18.13.0' | |
jobs: | |
if_merged: | |
if: github.event.pull_request.merged == true | |
name: Install packages and format code | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.BOT_ACCESS_TOKEN }} | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install | |
run: npm install | |
- name: Format Code | |
run: npx prettier . --write | |
- name: Commit | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name GCCollab Bot | |
git commit -a -m "Code formatting ${{ vars.IGNORE_DEPLOY }}" | |
git push |