Skip to content

bug: fix usage of * in type on Windows #2691

bug: fix usage of * in type on Windows

bug: fix usage of * in type on Windows #2691

Workflow file for this run

name: Test
on:
push:
branches:
- next
pull_request:
branches:
- next
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install Node dependencies
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test coverage
run: yarn jest test/ --collectCoverage=true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4