Esm support v3 #661
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: Documentation | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
checks: | |
if: github.event_name != 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '20.17.*' | |
- name: Generate docs | |
run: | | |
yarn install --frozen-lockfile | |
yarn build | |
yarn predocs:start | |
- name: Test Build | |
run: | | |
cd website | |
yarn install --frozen-lockfile | |
yarn build | |
gh-release: | |
if: github.event_name != 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '20.17.*' | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }} | |
- name: Generate docs | |
run: | | |
yarn install --frozen-lockfile | |
yarn build | |
yarn predocs:start | |
- name: Release to GitHub Pages | |
env: | |
USE_SSH: true | |
GIT_USER: git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "gh-actions" | |
cd website | |
yarn install --frozen-lockfile | |
GIT_USER=danieldelcore yarn deploy |