Skip to content

Test2

Test2 #102

Workflow file for this run

name: Format
on:
pull_request:
branches: [dev]
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"
- run: npm ci
- run: npm run format
- name: Commit changes
uses: stefanzweifel/[email protected]
with:
commit_message: Apply formatting changes
branch: ${{ github.head_ref }}