Skip to content

Merge pull request #625 from Lightspots/dependabot/npm_and_yarn/prett… #390

Merge pull request #625 from Lightspots/dependabot/npm_and_yarn/prett…

Merge pull request #625 from Lightspots/dependabot/npm_and_yarn/prett… #390

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Cache Node.js modules
uses: actions/cache@v4
with:
path: |
~/.yarn
**/node_modules
key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install and Build 🔧
run: |
yarn --frozen-lockfile
yarn run typedoc
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.