Add disadvantages (#144) #360
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: CI tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
Run-Tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Install | |
run: | | |
npm i | |
- name: Lint | |
run: | | |
npm run lint:ci | |
- name: Compile | |
run: | | |
npm run compile | |
- name: Tests | |
run: | | |
npm run coverage | |
- name: Publish to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
files: coverage/lcov.info | |
fail_ci_if_error: true |