Skip to content

fix: add file-level bootstrap cache guard as defensive fallback (#392) #163

fix: add file-level bootstrap cache guard as defensive fallback (#392)

fix: add file-level bootstrap cache guard as defensive fallback (#392) #163

Workflow file for this run

name: Version Packages
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
version:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Open or update release PR
uses: changesets/action@v1
with:
commit: "chore: version packages"
title: "chore: version packages"
version: npm run version-packages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}