Skip to content

Dev/oddk/frontend redesign (#253) #239

Dev/oddk/frontend redesign (#253)

Dev/oddk/frontend redesign (#253) #239

Workflow file for this run

name: CI tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Running tests
run: yarn test:report
- name: Tests Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}