Bump @astrojs/starlight from 0.28.6 to 0.30.3 #172
Workflow file for this run
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: Continuous Integration and Delivery | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ci-cd: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies | |
# run: bun install --frozen-lockfile | |
run: bun install | |
- name: Test | |
run: bun test | |
- name: Build & Publish Canary | |
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
run: | | |
cd library | |
bun run build | |
VERSION=$(node ../scripts/determine-next-version.js)-canary.$(date +%s) | |
yarn version --new-version $VERSION --no-git-tag-version | |
npm publish --tag canary --provenance --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |