Skip to content

Merge branch 'fix/law-edit-race-condition' into staging #140

Merge branch 'fix/law-edit-race-condition' into staging

Merge branch 'fix/law-edit-race-condition' into staging #140

Workflow file for this run

name: Run tests
on: push
jobs:
test:
name: Testing build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: yarn install
- name: Cache Node Modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: node_modules
key: node-modules-${{ hashFiles('yarn.lock') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Run Build
run: yarn prod-build