Skip to content

fix: date received fix #1542

fix: date received fix

fix: date received fix #1542

name: Partners Unit
on:
pull_request:
branches:
- main
jobs:
partners-unit:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
- name: yarn in root dir
run: yarn
# Rerun yarn in each app.
# It may seem unnecessary but there are some complex yarn package
# versioning dependencies here, so best to run to be safe.
# See https://github.com/bloom-housing/bloom/issues/3217#issuecomment-1430301029
# for more context.
- name: yarn in sites/public dir
working-directory: ./sites/public
run: yarn
- name: yarn in backend/core dir
working-directory: ./backend/core
run: yarn
- name: yarn in sites/partners dir
working-directory: ./sites/partners
run: yarn
# Tests
- name: yarn unit test sites/partners
run: yarn test:app:partners:unit