Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-home SDK implementations #50

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 2 additions & 4 deletions .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ export ERL_AFLAGS="-kernel shell_history enabled" # persistent iex history
# default: true
# export PLAYWRIGHT_HEADLESS=false

# default: driver
# default transport: driver (websocket is the one alternative)
# export PLAYWRIGHT_TRANSPORT=websocket

# default: ws://localhost:3000/playwright
# export PLAYWRIGHT_ENDPOINT="ws://localhost:3000/chromium"
# export PLAYWRIGHT_ENDPOINT="ws://localhost:3000/"

# put your custom/local overrides in here:
source_env_if_exists .local/envrc
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- name: Set up Elixir
uses: erlef/setup-elixir@v1
with:
elixir-version: '1.12.0'
otp-version: '24.0.1'
elixir-version: '1.16.2'
otp-version: '26.2.5'
- name: Install Elixir dependencies
run: mix deps.get
- name: Install Node dependencies
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
elixir 1.16.2-otp-26
erlang 26.2.5
nodejs 19.8.1
nodejs 22.2.0
3 changes: 3 additions & 0 deletions assets/driver.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env node
const { program } = require('./node_modules/playwright-core/lib/cli/program');
program.parse(process.argv);
Loading
Loading