chore(deps-dev): bump vite-plugin-dts from 3.6.1 to 3.7.1 #179
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 代码格式、基本质量检查 | |
name: code review | |
on: | |
push: | |
branches: | |
- v*.x | |
pull_request: | |
schedule: | |
# 19:00(UTC) 每天,相当于 03:00(GMT+8) | |
- cron: '0 19 * * *' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-nvm | |
- run: npm ci | |
- run: npm run lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-nvm | |
- run: npm ci | |
- 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: coverage/lcov.info |