Skip to content

(green) Fix issue #56, eitherN works for N > 1 now #74

(green) Fix issue #56, eitherN works for N > 1 now

(green) Fix issue #56, eitherN works for N > 1 now #74

Workflow file for this run

name: Build with Fable and deploy
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: 'read'
id-token: 'write'
pages: 'write'
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.x'
- name: Restore tools
run: |
dotnet tool restore
dotnet restore
npm ci
- name: Run tests
run: |
dotnet test
- name: Build web app
run: |
npm run buildGithub
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload built files
path: './publish'
# Deployment job
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@v2