Skip to content

Fix issues with OSR / disconnected graphs #73

Fix issues with OSR / disconnected graphs

Fix issues with OSR / disconnected graphs #73

Workflow file for this run

name: check
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build-all
# also prepare to deploy GH pages on main
- if: github.ref == 'refs/heads/main'
uses: actions/configure-pages@v5
- if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
with:
path: "./dist-www"
deploy:
name: Deploy
if: github.ref == 'refs/heads/main' && github.repository_owner == 'mozilla-spidermonkey'
needs: build
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4