Skip to content

update README, package.repository, bump version #4

update README, package.repository, bump version

update README, package.repository, bump version #4

name: Continuous Deployment
on:
push:
branches:
- "main"
workflow_dispatch:
jobs:
build:
name: Build, test, publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "npm"
node-version: 20
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}