Skip to content

reimplement <ViewTitle /> as functional component #66

reimplement <ViewTitle /> as functional component

reimplement <ViewTitle /> as functional component #66

Workflow file for this run

name: on-push
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
- name: "install and build"
run: |
npm install
npm run build
- name: "test"
run: |
npm run test
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
- name: "install and build"
run: |
cd docs
npm install
npm run build
- name: "deploy"
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/build