Skip to content

css: add reset, fixes box sizing issues #22

css: add reset, fixes box sizing issues

css: add reset, fixes box sizing issues #22

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Set up OCaml 4.14.x
uses: ocaml/setup-ocaml@v2
with:
# Version of the OCaml compiler to initialise
ocaml-compiler: 4.14.x
- name: Install dependencies
run: |
opam install . --deps-only --with-test --yes
- name: Build in release mode
run: |
opam exec -- dune build --profile=release @default
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: web # The folder the action should deploy.