Skip to content

Build project without observables when in build mode. #55

Build project without observables when in build mode.

Build project without observables when in build mode. #55

Workflow file for this run

name: Main
on:
push:
branches: [ "main" ]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v1
- name: Setup dotnet
uses: actions/setup-dotnet@v4
- name: Restore tools
run: dotnet tool restore
- name: Restore solution
run: dotnet restore
- name: Install node_modules
run: bun install --frozen-lockfile
- name: TypeScript check
run: bun run lint
- name: Build daemon
run : bun run postinstall
- name: Build docs
run: dotnet fsdocs build --noapidocs --projects "$(pwd)/Fable.Daemon/Fable.Daemon.fsproj"
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./output
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4