Pulling feat/strains-catalog into develop #748
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: Testing (Pull Request) | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
test: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: set up node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: check out code | |
uses: actions/checkout@v3 | |
- name: rename config file | |
run: mv apps/dicty-frontpage/src/common/utils/clientConfig.sample.ts apps/dicty-frontpage/src/common/utils/clientConfig.ts | |
- name: install | |
run: yarn install | |
- name: unit tests | |
run: yarn coverage | |
- name: upload test coverage to codecov | |
uses: codecov/codecov-action@v3 |