Skip to content

updating github workflows for npm publish #64

updating github workflows for npm publish

updating github workflows for npm publish #64

Workflow file for this run

name: "PR Test"
on:
pull_request:
types: [opened, reopened, synchronize, edited]
jobs:
pr-test:
name: "PR Test"
runs-on: "ubuntu-latest"
environment: integration-sandbox
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
scope: '@boulevard'
- run: yarn install --frozen-lockfile
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}