Bump the npm_and_yarn group across 2 directories with 21 updates #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy Docs | |
on: [push] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
working-directory: ./resultstoresearch/client | |
- uses: actions/setup-node@master | |
with: | |
working-directory: ./resultstoresearch/client | |
- name: Install Yarn | |
working-directory: ./resultstoresearch/client | |
run: | | |
yarn install | |
- name: Build Docs | |
working-directory: ./resultstoresearch/client | |
run: | | |
yarn typedoc | |
- name: Add No Jekyll | |
working-directory: ./resultstoresearch/client/docs | |
run: | | |
touch .nojekyll | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@4.1.1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages # The branch the action should deploy to. | |
FOLDER: resultstoresearch/client/docs # The folder the action should deploy. |