Skip to content

removed browser-only comments #13

removed browser-only comments

removed browser-only comments #13

Workflow file for this run

name: Build and publish package
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build_and_publish:
name: Build REmatch-javascript package
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}