chore: using icon #160
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: Unit test | |
on: [push, pull_request] | |
jobs: | |
run-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup node environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- name: install dependices | |
run: yarn | |
- name: run test | |
run: yarn test | |
- name: report coverage | |
uses: codecov/codecov-action@v2 |