Skip to content

updating github workflows for npm publish #62

updating github workflows for npm publish

updating github workflows for npm publish #62

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@v3
- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
npm-token: ${{ secrets.NPM_TOKEN }}
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}