Skip to content

Add Mint configuration. #15

Add Mint configuration.

Add Mint configuration. #15

Workflow file for this run

name: Captain CI example
on:
pull_request:
push:
paths-ignore:
- README.md
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- uses: rwx-research/setup-captain@v1
- name: Run Playwright tests
run: captain run captain-examples-playwright
env:
PLAYWRIGHT_JSON_OUTPUT_NAME: tmp/results.json
RWX_ACCESS_TOKEN: ${{ secrets.RWX_ACCESS_TOKEN }}