Skip to content

PRSD-649: Landlord Search Page Integration Tests #558

PRSD-649: Landlord Search Page Integration Tests

PRSD-649: Landlord Search Page Integration Tests #558

Workflow file for this run

name: Build and Test
on:
pull_request:
jobs:
test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install JDK 17
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 17
cache: 'gradle'
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run build
- name: Run gradle `check` to run linting and tests
env:
ONE_LOGIN_PRIVATE_KEY: |
${{ secrets.ONE_LOGIN_PRIVATE_KEY }}
ONE_LOGIN_PUBLIC_KEY: |
${{ secrets.ONE_LOGIN_PUBLIC_KEY }}
EMAILNOTIFICATIONS_APIKEY: ${{ secrets.NOTIFY_KEY }}
run: ./gradlew clean check --no-daemon