Skip to content

WIP

WIP #561

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CI: true
jobs:
test-cli:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
cd cli
yarn
- name: Check formatting
run: |
cd cli
yarn test:format
- name: Run tests
run: |
cd cli
yarn test:unit
test-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
cd web
yarn
- name: Check formatting
run: |
cd web
yarn test:format
- name: Run tests
run: |
cd web
yarn test:unit