chore(lockfile): Update dependency next-sanity to v9.8.11 (#405) #491
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] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read # for checkout | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: pnpm | |
node-version: lts/* | |
- run: pnpm install --dev --ignore-scripts | |
- uses: actions/cache@v4 | |
with: | |
path: node_modules/.cache/prettier/.prettier-cache | |
key: prettier-${{ hashFiles('pnpm-lock.yaml') }}-${{ hashFiles('.prettierignore') }}-${{ hashFiles('package.json') }} | |
- run: pnpm format | |
- uses: actions/create-github-app-token@v1 | |
id: generate-token | |
with: | |
app-id: ${{ secrets.ECOSPARK_APP_ID }} | |
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }} | |
- uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7 | |
with: | |
body: I ran `pnpm format` π§βπ» | |
branch: actions/prettier-test | |
commit-message: 'chore(prettier): π€ β¨' | |
labels: π€ bot | |
sign-commits: true | |
title: 'chore(prettier): π€ β¨' | |
token: ${{ steps.generate-token.outputs.token }} | |
website: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./website | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: pnpm | |
node-version: lts/* | |
- run: pnpm install --dev --ignore-scripts | |
- uses: actions/cache@v4 | |
with: | |
path: node_modules/.cache/prettier/.prettier-cache | |
key: prettier-${{ hashFiles('pnpm-lock.yaml') }}-${{ hashFiles('.prettierignore') }}-${{ hashFiles('package.json') }} | |
- run: pnpm format | |
- uses: actions/create-github-app-token@v1 | |
id: generate-token | |
with: | |
app-id: ${{ secrets.ECOSPARK_APP_ID }} | |
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }} | |
- uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7 | |
with: | |
body: I ran `pnpm format` π§βπ» | |
branch: actions/prettier-website | |
commit-message: 'chore(prettier): π€ β¨' | |
labels: π€ bot | |
sign-commits: true | |
title: 'chore(prettier): π€ β¨' | |
token: ${{ steps.generate-token.outputs.token }} |