Skip to content

Auto-format code

Auto-format code #11

Workflow file for this run

name: CI/CD pipeline
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: |
npm install
git diff --exit-code
- name: Run code auto-formatting
run: |
npm run auto-format
git diff --exit-code