Skip to content

test(emitter): 增加 once 监听器方法 #331

test(emitter): 增加 once 监听器方法

test(emitter): 增加 once 监听器方法 #331

Workflow file for this run

# 代码格式、基本质量检查
name: code review
on:
push:
branches:
- v*.x
pull_request:
jobs:
code-review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- name: build
run: npm run build
- name: lint
run: npm run lint
- name: test
run: npm run test:coverage
- uses: codacy/codacy-coverage-reporter-action@v1
if: github.actor != 'dependabot[bot]'
with:
api-token: ${{ secrets.CODACY_API_TOKEN }}
coverage-reports: packages/*/coverage/lcov.info