Skip to content

Remove package private #3

Remove package private

Remove package private #3

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Release to npm
on:
push:
branches:
- 'test-npm'
jobs:
build:
defaults:
run:
working-directory: "./app/client"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
scope: '@jpmorgan-payments'
- run: yarn install --frozen-lockfile
- run: yarn publish --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_JPMC_PUBLISHER }}