Skip to content

Doc update

Doc update #41

Workflow file for this run

name: CD
on:
push:
tags:
- '*'
jobs:
publish:
name: Package publish using node ${{ matrix.node }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [14]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org
- name: install
run: yarn
- name: yarn lint
run: yarn run lint
- name: build
run: yarn run build
- name: release
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}