Skip to content

Fix release flow

Fix release flow #42

Workflow file for this run

name: format
on:
pull_request:
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
format:
name: ๐Ÿ‘ฎ Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Install packages
run: npm ci
- name: Check formatting with prettier
run: npm run format:check