👷 处理edge商店发布不能包含压缩文件的问题 #351
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: test | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
- dev | |
- develop/* | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: Run tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Unit Test | |
run: | | |
npm ci | |
npm test | |
- name: Upload coverage reports to Codecov with GitHub Action | |
uses: codecov/codecov-action@v3 |