Skip to content

Remove the need for specifying GITHUB_TOKEN env #32

Remove the need for specifying GITHUB_TOKEN env

Remove the need for specifying GITHUB_TOKEN env #32

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