Add pageSize and isProcessed #12
Workflow file for this run
This file contains 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 Extension | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: main | |
env: | |
API_URL: https://api.samepage.network | |
AWS_ACCESS_KEY_ID: ${{ secrets.SAMEPAGE_AWS_ACCESS_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.SAMEPAGE_AWS_ACCESS_SECRET }} | |
AWS_REGION: us-east-1 | |
PLAYWRIGHT_HTML_REPORT: playwright-report | |
SAMEPAGE_TEST_PASSWORD: ${{ secrets.SAMEPAGE_TEST_PASSWORD }} | |
WEB_SOCKET_URL: wss://ws.samepage.network | |
jobs: | |
test-mac: | |
# runs-on: ubuntu-latest - TODO instead of reintroducing, we could look into matrixing. Seems low value, high cost tho | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install | |
run: npm install | |
- name: install playwright | |
run: npx playwright install chromium | |
- name: test | |
run: npx samepage test | |
- name: Upload Integration Test Coverage to Codecov | |
uses: codecov/codecov-action@v3 |