Skip to content

[website] improved doc sections #110

[website] improved doc sections

[website] improved doc sections #110

Workflow file for this run

name: JavaScript
on:
push:
branches:
- main
paths:
- javascript/**
- .github/workflows/javascript.yaml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
scope: '@hal9ai'
- run: yarn install
working-directory: ./javascript
- run: yarn build:npm
working-directory: ./javascript
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: ./javascript