STRATCONN-7030 - [First Party DV360] - Journeys V2 support via new Sync Audience Action #16009
Workflow file for this run
This file contains hidden or 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: Test External | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| env: | |
| ARTIFACTORY_URL: ${{ vars.ARTIFACTORY_URL }} | |
| jobs: | |
| install-and-test: | |
| env: | |
| HUSKY: 0 | |
| NX_DISABLE_DB: true | |
| runs-on: ubuntu-latest-large | |
| timeout-minutes: 20 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: yarn | |
| - name: Artifactory OIDC Auth | |
| if: ${{ env.ARTIFACTORY_URL != '' }} | |
| uses: ./.github/actions/artifactory-oidc | |
| - name: Install | |
| run: yarn install --frozen-lockfile | |
| - name: Test | |
| run: yarn test | |
| - name: Build | |
| run: yarn build |