WIP - Add experimental Firefox integration test support #464
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: Pixel Schema Validation | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| pixel-validation: | |
| if: github.actor != 'dependabot[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| - name: Checkout internal-github-asana-utils repo | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GH_RO_PAT }} | |
| path: internal-github-asana-utils | |
| repository: duckduckgo/internal-github-asana-utils | |
| - run: npm run install-ci | |
| - run: npm run validate-pixel-defs -- -g ./internal-github-asana-utils/user_map.yml |