Bump follow-redirects from 1.14.7 to 1.15.6 in /resultstoresearch/client #78
Workflow file for this run
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/[email protected] | |
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. |