Skip to content

Prefix any attribute with a lightsaber !, or wrap a value with force(), to force updates, bypassing equality checks. #8

Prefix any attribute with a lightsaber !, or wrap a value with force(), to force updates, bypassing equality checks.

Prefix any attribute with a lightsaber !, or wrap a value with force(), to force updates, bypassing equality checks. #8

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm clean-install
- name: Create declarations for library consumers
run: npm run build
- name: Run tests
run: npm test