Skip to content

Cloudflare Workers Cache is no longer private beta (#14198) #31

Cloudflare Workers Cache is no longer private beta (#14198)

Cloudflare Workers Cache is no longer private beta (#14198) #31

Workflow file for this run

name: 'Format Code'
on:
push:
branches:
- main
permissions: {}
jobs:
format:
if: ${{ github.repository_owner == 'withastro' }}
runs-on: ubuntu-latest
env:
NODE_OPTIONS: "--max_old_space_size=4096"
steps:
- name: Check out code using Git
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.head_ref }}
# Needs access to push to main
token: ${{ secrets.FREDKBOT_GITHUB_TOKEN }}
- name: Install Tools & Dependencies
uses: ./.github/actions/install
- name: Format code
run: pnpm run format:ci
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@4a55954c782fc1ea30b9056cd3e7a2b40ca8887d # v7.2.0
with:
commit_message: '[ci] format'
branch: ${{ github.head_ref }}
commit_user_name: fredkbot
commit_user_email: fred+astrobot@astro.build