Skip to content

Update readme.md

Update readme.md #11

Workflow file for this run

name: Publish to GitHub Package Registry
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 8.x
uses: actions/setup-node@v3
with:
registry-url: https://npm.pkg.github.com/
node-version: 8.x
scope: '@alphauslabs'
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
- name: publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm run deploy