fix: various nits with process lifetime and streaming #77
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: Website | |
on: | |
push: | |
branches: [master] | |
workflow_dispatch: {} | |
concurrency: | |
group: website | |
cancel-in-progress: true | |
jobs: | |
website: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: master | |
- uses: actions/checkout@v4 | |
with: | |
path: website | |
ref: website | |
- id: cache-node-modules | |
uses: actions/cache@v4 | |
with: | |
path: '**/node_modules' | |
key: ${{ hashFiles('**/package-lock.json') }} | |
- if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
run: | | |
npm install --omit=dev | |
cd website | |
npm install | |
- uses: actions/checkout@v4 | |
with: | |
path: gh-pages | |
ref: gh-pages | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- run: npm run dox:build | |
- run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "cha0s" | |
npm run gh-pages || true |