Skip to content

Fix multipleOf bugs #116

Fix multipleOf bugs

Fix multipleOf bugs #116

Workflow file for this run

name: Prettier
on: [push, pull_request]
jobs:
prettier:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
fetch-depth: 0
- run: npm ci
- run: npm run prettier
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Run Prettier
branch: ${{ github.head_ref }}