Skip to content

ci: Updated docs

ci: Updated docs #8

Workflow file for this run

name: Build and Test Testbed
on:
workflow_dispatch:
pull_request:
push:
jobs:
build-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn compile
- name: Test
run: yarn test