Skip to content

feat: add lerna and use yarn workspaces #38

feat: add lerna and use yarn workspaces

feat: add lerna and use yarn workspaces #38

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: ESLint
run: yarn eslint
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Prettier
run: yarn prettier:check
test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Tests
run: yarn test