CircleCI

Add a SentinelQA upload step after your Playwright tests. Store environment variables in CircleCI project settings.

yaml
jobs:
  playwright:
    docker:
      - image: cimg/node:20.11
    steps:
      - checkout
      - run: npm ci
      - run: npm run test:playwright
      - run:
          name: Upload SentinelQA artifacts
          command: npx sentinelqa upload
          environment:
            SENTINELQA_API_KEY: "$SENTINELQA_API_KEY"