Skip to content

v7.0.3

v7.0.3 #25

Workflow file for this run

name: Publish Node.js Package
on:
release:
types: [published]
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies & build packages
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test:ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}