Skip to content

Merge pull request #207 from tablelandnetwork/dependabot/npm_and_yarn… #36

Merge pull request #207 from tablelandnetwork/dependabot/npm_and_yarn…

Merge pull request #207 from tablelandnetwork/dependabot/npm_and_yarn… #36

Workflow file for this run

name: Docs
on:
push:
branches:
- main
concurrency:
group: docs-${{github.ref}}
cancel-in-progress: true
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Cache 📦
uses: actions/cache@v2
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup ⬢
uses: actions/setup-node@v2-beta
with:
node-version: 18
- name: Install 🔧
run: npm install
- name: Build 🛠
run: npm run build
- name: Docs 📓
run: |
npm run docs:html
touch docs/.nojekyll
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs