Skip to content

Merge pull request #59 from gaia-charge/fix/redirect-default-lang #152

Merge pull request #59 from gaia-charge/fix/redirect-default-lang

Merge pull request #59 from gaia-charge/fix/redirect-default-lang #152

Workflow file for this run

name: Continuous Integration
# This action works with pull requests and pushes
on:
pull_request:
push:
branches:
- main
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Prettify code
# https://github.com/marketplace/actions/prettier-action
uses: suda/[email protected]
with:
prettier_options: --write **/*.{js,md,svelte}
prettier_plugins: svelte prettier-plugin-svelte
commit_message: "✨️ Prettified Code!"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}