Skip to content

Update README.md to include a screenshot and enhance project description #24

Update README.md to include a screenshot and enhance project description

Update README.md to include a screenshot and enhance project description #24

Workflow file for this run

name: Release
on:
push:
branches:
- main
- next
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm ci
- run: npm run lint
- run: npm run format
- run: npm test
- run: npm audit signature
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release