Skip to content

Fix get users query partial email #1071

Fix get users query partial email

Fix get users query partial email #1071

Workflow file for this run

name: Bloom Backend CI Pipeline
on:
pull_request:
branches: [develop]
push:
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
env:
SIMPLYBOOK_CREDENTIALS: '{"login": "login"}'
STORYBLOK_WEBHOOK_SECRET: ${{ secrets.STORYBLOK_WEBHOOK_SECRET }}
steps:
- uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache node_modules
uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Use NodeJs
uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run prettier
run: yarn format
- name: Run linting
run: yarn lint
- name: Run unit tests
run: yarn test:cov
- name: Build app
run: yarn build