fix(CS-3693 - remove minimums) - AddressLine2 should not be required #5824
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Check | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '7' | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: temurin | |
cache: maven | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- uses: snok/install-poetry@v1 | |
with: | |
version: '1.6.1' | |
- run: npm ci | |
# Run with the target branch as the base. | |
- name: Build | |
uses: ./.github/actions/nx-production-build | |
with: | |
affected-base: origin/${{ github.base_ref }} |