fix: add config yaml #776
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
# 1.setup node env | |
# 2.unit test | |
# 3.upload coverage | |
name: unit-test | |
on: [push, pull_request] | |
# This ensures that previous jobs for the PR are canceled when the PR is updated. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
jest-run: | |
runs-on: ubuntu-20.04 | |
# let's make sure our tests pass on Chrome browser | |
name: Jest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup node env and build | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14.17 | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Unit test | |
run: yarn run test:unit:coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |