8000 Loop with generators · lispx/lispx@fcc4741 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Initial Generators-based implementation #31

Initial Generators-based implementation

Initial Generators-based implementation #31

Workflow file for this run

name: Browser Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Browser Tests
run: TEST_ALL_BROWSERS=1 ./scripts/browser-test
0