fix: use relative path for default font #36
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
# Simple workflow for deploying static content to GitHub Pages | |
name: Build application and deploy static content to Pages | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: ['main'] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: 'pages' | |
cancel-in-progress: false | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- name: Run lint | |
run: | | |
npm ci | |
npm run lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- name: Run test | |
run: | | |
npm ci | |
npm run test | |
e2e: | |
# Disable e2e tests for now, they are flaky | |
if: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- name: Build application | |
run: | | |
bash ./scripts/get-openscad.sh | |
npm ci | |
npm run build | |
- name: Run e2e tests | |
uses: cypress-io/github-action@v6 | |
with: | |
browser: chrome | |
start: npm run serve | |
wait-on: 'http://localhost:8000' | |
wait-on-timeout: 30 | |
- name: Upload screenshots | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: | | |
cypress/screenshots | |
cypress/snapshots/diff | |
# Single deploy job since we're just deploying | |
deploy: | |
needs: [lint, test] # TODO Add e2e again once the flaking and strange behaviour is fixed | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- name: build | |
run: | | |
bash ./scripts/get-openscad.sh | |
npm ci | |
NODE_ENV=production npm run build | |
env: | |
TRACKER_SNIPPET: ${{ vars.TRACKER_SNIPPET }} | |
GH_ISSUE_URL: ${{ vars.GH_ISSUE_URL }} | |
GH_REPO_URL: ${{ vars.GH_REPO_URL }} | |
WEBSITE_URL: ${{ vars.WEBSITE_URL }} | |
CORSPROXY: ${{ vars.CORSPROXY }} | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
# Upload entire dist directory | |
path: './dist' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |