Skip to content

feat(lazy): add .stylua.toml #158

feat(lazy): add .stylua.toml

feat(lazy): add .stylua.toml #158

Workflow file for this run

name: "Format"
on: ["pull_request", "push"]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v1
with:
node-version: "18.x"
- name: Install dependencies
run: npm ci
- name: Format files
run: npm run format
- name: Commit changes
uses: stefanzweifel/[email protected]
with:
commit_message: "feat(format): apply formatting changes"
branch: ${{ github.head_ref }}