Skip to content

Bugfix/issue 4 predict incorrect channels #17

Bugfix/issue 4 predict incorrect channels

Bugfix/issue 4 predict incorrect channels #17

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, synchronize]
workflow_dispatch:
jobs:
test_job:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install Packages
run: yarn install
- name: Lint code
run: yarn run --silent prettier --check --loglevel log "src/**/*.{js,jsx,ts,tsx,json,css,scss,md}" && yarn run eslint --max-warnings 0 "src/**/*.{js,jsx,ts,tsx}"
- name: Run Tests
run: yarn test --silent
env:
CI: true
# - name: Build page
# run: yarn build