Skip to content

chore: 不再使用 @storybook/storybook-deployer 进行手工发布 #97

chore: 不再使用 @storybook/storybook-deployer 进行手工发布

chore: 不再使用 @storybook/storybook-deployer 进行手工发布 #97

Workflow file for this run

name: Codecov
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:all -- --coverage
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}