Skip to content

chore: update rescript and related dependencies to v12.2.0-rc.1 #65

chore: update rescript and related dependencies to v12.2.0-rc.1

chore: update rescript and related dependencies to v12.2.0-rc.1 #65

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- run: corepack enable
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- name: yarn run cleantest
run: yarn run cleantest
- name: yarn run cleancoverage
run: yarn run cleancoverage
# - name: Coveralls
# uses: coverallsapp/github-action@master
# with:
# path-to-lcov: ./docs/coverage/lcov.info
# github-token: ${{ secrets.GITHUB_TOKEN }}