Skip to content

Update README.md

Update README.md #45

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
jobs:
build-test-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set-up Node
uses: actions/setup-node@v1
with:
node-version: "14.x"
- run: npm install
- run: npm run build
- run: npm run cname
- run: npm test
- name: Deploy
uses: crazy-max/ghaction-github-pages@v1
with:
target_branch: gh-pages
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}