Skip to content

Spectrogram tests

Spectrogram tests #7

Workflow file for this run

name: Deploy Documentation Preview on Netlify
on: pull_request
jobs:
Documentation-Preview:
name: Deploy Preview on Netlify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: |
- recursive: true
- name: Build docs
run: pnpm build:docs
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: "./dist/docs"
production-branch: main
production-deploy: false
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Documentation Deployment Preview"
enable-github-deployment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1