Skip to content

fix(deps): update dependency astro to v5.2.1 (#339) #251

fix(deps): update dependency astro to v5.2.1 (#339)

fix(deps): update dependency astro to v5.2.1 (#339) #251

Workflow file for this run

name: Format
on:
workflow_dispatch:
push:
branches:
- main
jobs:
format:
if: github.repository_owner == 'astrolicious'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
id: app-token
with:
app-id: ${{ vars.BOT_APPID }}
private-key: ${{ secrets.BOT_SECRET }}
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
token: ${{ steps.app-token.outputs.token }}
ref: ${{ github.head_ref }}
- name: Setup PNPM
uses: pnpm/action-setup@v3
- name: Setup Node
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Lint code with Biome & Prettier
run: pnpm run format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # v5
with:
commit_message: "[ci] lint"
branch: ${{ github.head_ref }}