Skip to content

docs: add todo messages to the planned sections #96

docs: add todo messages to the planned sections

docs: add todo messages to the planned sections #96

Workflow file for this run

name: Version Package
on:
push:
branches: [main]
paths:
- "src/**"
- "tests/**"
- "pnpm-lock.yaml"
- "README.md"
- ".github/workflows/version.yml"
workflow_dispatch: {}
jobs:
version:
name: Version
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install pnpm
uses: pnpm/action-setup@v3
id: pnpm-install
with:
version: 8
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
- name: Configure git user
run: |
git config --global user.name "GitHub Actions Bot"
git config --global user.email "<>"
- name: Build
run: |
pnpm build
- name: Bump version
run: |
pnpm fork-version
- name: Push changes
run: |
git push --follow-tags origin main