Configure commits of refactor
and test
to not be appended to CHANGELOG.md
#78
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI - Prettier check | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
prettier_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: ./.github/actions/ci-common-setup | |
- name: Prettier check | |
run: pnpm exec prettier --check "./{src,spec}/**/*.{ts,tsx,js,mjs,jsx}" |