Skip to content

npm install moved

npm install moved #2

Workflow file for this run

name: Publish Release
on:
repository_dispatch:
types: [publish]
jobs:
publish:
name: Publish to npm
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Run Tests
run: npm test
- name: Beachball Check
run: npm run beachball:check
- name: Beachball Bump
run: npm run beachball:bump
- name: Publish to npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}