Skip to content

chore(deps): bump lodash from 4.17.15 to 4.17.21 in /client #110

chore(deps): bump lodash from 4.17.15 to 4.17.21 in /client

chore(deps): bump lodash from 4.17.15 to 4.17.21 in /client #110

Workflow file for this run

name: 'Client: Test & Build'
on:
pull_request:
branches:
- '*'
tags-ignore:
- '*'
paths:
- 'client/**'
- '.github/workflows/client-*'
push:
branches:
- '*'
tags-ignore:
- '*'
paths:
- 'client/**'
- '.github/workflows/client-*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.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
working-directory: client
- name: Typecheck & Lint
run: |
yarn fmt:check
yarn lint
yarn ts:check
env:
CI: true
working-directory: client
- name: Test
run: yarn test
env:
CI: true
working-directory: client
- name: Build
run: yarn build
working-directory: client