Skip to content

Format

Format #116

Workflow file for this run

name: Format
on:
pull_request:
branches: [master]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Format
run: |
yarn

Check failure on line 17 in .github/workflows/format.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/format.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
yarn format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4.1.2
with:
commit_message: Apply formatting changes
branch: ${{ github.head_ref }}