Skip to content

fix(atoms): add tests for proxies and fix several edge case bugs (#176) #192

fix(atoms): add tests for proxies and fix several edge case bugs (#176)

fix(atoms): add tests for proxies and fix several edge case bugs (#176) #192

Workflow file for this run

name: Test Coverage
on:
push:
branches: [master]
tags: ['!*'] # don't execute on tags
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn test
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v5
with:
directory: ./coverage
fail_ci_if_error: true
name: zedux-master
token: ${{ secrets.CODECOV_TOKEN }}