Skip to content

fix(lib): use document token to resolve window object #119

fix(lib): use document token to resolve window object

fix(lib): use document token to resolve window object #119

Workflow file for this run

name: ci
on:
pull_request:
paths-ignore:
- '*.md'
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install
run: npm ci
- name: build
run: npm run nx -- affected:build --base=origin/main --head=HEAD
- name: test
run: npm run nx -- affected:test --base=origin/main --head=HEAD