Skip to content

Add new negative versions of existing tests #14

Add new negative versions of existing tests

Add new negative versions of existing tests #14

Workflow file for this run

name: Publish Package
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
registry-url: 'https://npm.pkg.github.com'
- name: Publish to GitHub Packages
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.ACTIONS_TOKEN }}