Skip to content

Added ceiling and floor example files. #98

Added ceiling and floor example files.

Added ceiling and floor example files. #98

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
run-tests:
name: Run Unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Install Playwright dependencies
run: npx playwright install-deps
- name: Setup Playwright
run: npx playwright install
- name: Run unit tests
run: npm run test:units
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
directory: ./coverage/