Skip to content

Bump actions/setup-node from 4 to 6 #11

Bump actions/setup-node from 4 to 6

Bump actions/setup-node from 4 to 6 #11

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
env:
TERM: screen-256color
strategy:
fail-fast: false
matrix:
os:
- self-hosted
# - macos-latest
ocaml-compiler:
- "5.3"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 18
- name: Setup OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
- name: Install dependencies
run: opam install -y . --deps-only --with-test
- name: Build
run: opam exec -- dune build @install