Skip to content

Format

Format #1311

Workflow file for this run

name: auto-format
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
format:
# Check if pull request is not from a fork
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm run format