Skip to content

Configuration parameter added for browser #48

Configuration parameter added for browser

Configuration parameter added for browser #48

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
paths:
- '**/*.ts'
jobs:
test:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: '20'
cache: yarn
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn ci