Skip to content

fix: P-717 support > op in amount comparison right clause, support … #56

fix: P-717 support > op in amount comparison right clause, support …

fix: P-717 support > op in amount comparison right clause, support … #56

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
jobs:
check_codebase:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
# We need to fetch all branches and commits so that Nx affected has a base to compare against.
fetch-depth: 0
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'main'
- name: Install pnpm
uses: pnpm/action-setup@v3
id: pnpm-install
with:
version: 7
run_install: true
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Run tests
run: |
pnpm test