fix: make hscan
return flat list of entries (#1300)
#132
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: Prettier | |
on: | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
run: | |
name: Can the code be prettier? 🤔 | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # for gr2m/create-or-update-pull-request-action to push local changes | |
pull-requests: write # for gr2m/create-or-update-pull-request-action to create a PR | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
node-version: lts/* | |
- run: npm ci --ignore-scripts --only-dev | |
- uses: actions/cache@v3 | |
with: | |
path: node_modules/.cache/prettier/.prettier-cache | |
key: prettier-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.gitignore') }} | |
- run: npx prettier --ignore-path .gitignore --cache --write . | |
- run: git restore .github/workflows data | |
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5 | |
with: | |
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com> | |
body: I ran `npm run prettier` 🧑💻 | |
branch: actions/prettier | |
commit-message: 'chore(prettier): 🤖 ✨' | |
labels: 🤖 bot | |
title: 'chore(prettier): 🤖 ✨' | |
token: ${{ secrets.GH_TOKEN }} |