Skip to content

dev: Move from mkcert to basic-ssl and create dev:host script #42

dev: Move from mkcert to basic-ssl and create dev:host script

dev: Move from mkcert to basic-ssl and create dev:host script #42

Workflow file for this run

name: CI
on:
push:
branches: [main, release]
pull_request:
workflow_dispatch:
merge_group:
types:
- checks_requested
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: biomejs/setup-biome@v2
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build package
run: cd packages/byegl && pnpm build
- name: Test
run: pnpm test:ci
- name: Build docs
run: cd apps/docs && pnpm build