Skip to content

Added more unit tests of components (#13) #47

Added more unit tests of components (#13)

Added more unit tests of components (#13) #47

Workflow file for this run

name: publish
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
name: deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.DEPLOY_PT }}