DEP-11967 cookie sync prebid.js integration #10
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: Compile dependencies.json for PR assignment checks | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| generate_deps: | |
| name: Generate dependencies.json | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: refs/pull/${{ github.event.pull_request.number }}/head | |
| - name: Install dependencies | |
| uses: ./.github/actions/npm-ci | |
| - name: Build | |
| run: | | |
| npx gulp build | |
| - name: Upload dependencies.json | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: dependencies.json | |
| path: ./build/dist/dependencies.json | |
| - name: Generate PR info | |
| run: | | |
| echo '{ "prNo": ${{ github.event.pull_request.number }} }' >> ${{ runner.temp}}/prInfo.json | |
| - name: Upload PR info | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: prInfo | |
| path: ${{ runner.temp}}/prInfo.json |