Skip to content

docs: added

docs: added #105

Workflow file for this run

name: CI
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
concurrency:
group: Release
cancel-in-progress: false
jobs:
format:
uses: ./.github/workflows/check-formatting.yml
lint:
uses: ./.github/workflows/lint.yml
dependencies:
uses: ./.github/workflows/check-dependencies.yml
spelling:
uses: ./.github/workflows/check-spelling.yml
test:
uses: ./.github/workflows/test.yml
green-light:
if: always()
needs:
- lint
- dependencies
- spelling
- format
- test
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@release/v1
id: all-green
with:
jobs: ${{ toJSON(needs)}}
docs:
runs-on: ubuntu-latest
needs:
- green-light
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare
- run: pnpm run build:docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GH_TOKEN }}
publish_dir: ./docs
keep_files: true
npm:
needs:
- green-light
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: ./.github/actions/prepare
- name: Build
run: pnpm run build
- name: Release
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > ~/.npmrc
#!/bin/bash
if ! pnpm can-npm-publish; then
exit 0
fi
pnpm publish --access public