Skip to content

Update README.md

Update README.md #33

Workflow file for this run

name: Push
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
registry-url: 'https://registry.npmjs.org'
cache: npm
- name: npm ci
run: npm ci
- name: tsc
uses: icrawl/action-tsc@v1
- run: npm run build
- run: npm run test-integr
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}