[WIP] Support DOT inputs (and multigraphs); much improved boundary node splitting in pattern identification; add back frayed rope support; lots of other improvements #38
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
# Based on | |
# https://github.com/fedarko/strainFlye/blob/main/.github/workflows/main.yml + | |
# https://github.com/biocore/empress/blob/master/.github/workflows/main.yml | |
name: MgSc JavaScript CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14] | |
steps: | |
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install MetagenomeScope's Node.js development dependencies | |
run: npm install -g mocha-headless-chrome nyc [email protected] jshint | |
- name: Lint and stylecheck the JS code | |
run: make jsstylecheck | |
- name: Run JS tests | |
run: make jstest | |
- name: Upload JS code coverage information to Codecov | |
uses: codecov/codecov-action@v2 |