Skip to content

Fixed some TS warnings and minor bugs #79

Fixed some TS warnings and minor bugs

Fixed some TS warnings and minor bugs #79

Workflow file for this run

name: Build and deploy to GH Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci --save-dev
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Build Zip for LD
uses: actions/upload-artifact@v3
with:
name: LD-compatible-zip
path: dist/
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v1
with:
path: dist
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
if: github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1