Skip to content

test(recording): Add JibriSession tests and string error handling cov… #157

test(recording): Add JibriSession tests and string error handling cov…

test(recording): Add JibriSession tests and string error handling cov… #157

Workflow file for this run

name: Deploy GH pages
on:
workflow_dispatch:
push:
branches: [ "master" ]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Build docs
run: |
npm install
npm run typedoc
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4