Skip to content

update reference.json (#538) #320

update reference.json (#538)

update reference.json (#538) #320

name: Publish reference lib package to NPM
on:
push:
branches: ['main']
paths: ['reference-lib/**']
pull_request:
branches: ['main']
paths: ['reference-lib/**']
defaults:
run:
working-directory: ./reference-lib
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
registry-url: 'https://registry.npmjs.org'
node-version: 24
- name: Install dependencies
run: npm ci
- name: Test it out
run: npm run test
- name: Bundle using rollup
run: npm run build
- name: publish package
if: github.event_name == 'push'
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create and push tag matching the npm package
if: github.event_name == 'push'
run: |
export PACKAGE_VERSION=v$(node -p -e 'require("./package.json").version')
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git tag -a "$PACKAGE_VERSION" -m "Release $PACKAGE_VERSION"
git push origin "$PACKAGE_VERSION"