ci: add examples label to labeler.yml
#4
Workflow file for this run
This file contains 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: JSON Lint | |
on: | |
pull_request: | |
paths: | |
- 'changelogithub.config.json' | |
- '.prettierrc.toml' | |
jobs: | |
prettier: | |
name: prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set nodejs | |
uses: actions/setup-node@v4 | |
with: | |
registry-url: https://registry.npmjs.org/ | |
node-version: lts/* | |
- name: Run prettier | |
run: npx prettier@latest changelogithub.config.json -c |