direct readonly store access and static constructors #31
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: Docs | |
on: | |
release: | |
types: [created] | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Setup Repo | |
uses: actions/checkout@v3 | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
registry-url: "https://registry.npmjs.org" | |
cache: "pnpm" | |
- name: Install All Deps | |
run: pnpm install --no-lockfile | |
- name: Remove GitIgnore | |
run: rm ./.gitignore | |
- name: Build Docs | |
run: pnpm run docs | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: docs | |
folder: docs |