Skip to content

docs: fix formatting #21

docs: fix formatting

docs: fix formatting #21

Workflow file for this run

name: release
on:
push:
branches: main
permissions:
contents: write
issues: read
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
token: ${{ secrets.NPM_TOKEN }}
- run: npm ci
- run: npm i -D @semantic-release/changelog @semantic-release/git
- run: npm run build --if-present
- run: npm run format --if-present
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}