fix: XSS validation filters shielding dynamic node identifier strings (#9) #45
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: Vesting Dashboard Build | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22" | |
| - run: npm ci | |
| - run: node scripts/check-contrast.mjs | |
| - run: npm run build | |
| - run: npx playwright install chromium --with-deps | |
| - run: npx playwright test | |
| env: | |
| CI: true |