[LR/TTD] Update meta.json structure to include audienceId, destinationConfigId and mappingId #14221
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: | |
| jobs: | |
| install-and-test: | |
| env: | |
| HUSKY: 0 | |
| NX_DISABLE_DB: true | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 20 | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: yarn | |
| - name: Install | |
| run: yarn install --frozen-lockfile | |
| - name: Test | |
| run: yarn test | |
| - name: Build | |
| run: yarn build |