Skip to content

fix: restore the broken star history chart- #567 (#567) #710

fix: restore the broken star history chart- #567 (#567)

fix: restore the broken star history chart- #567 (#567) #710

Workflow file for this run

name: main
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [^20, ^22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn lint
- run: yarn test
- run: yarn coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: node-${{ matrix.node-version }}
fail_ci_if_error: false