Skip to content

Commit

Permalink
Max agents per browser (#249)
Browse files Browse the repository at this point in the history
* feat: ability to control max heros per browser

* chore: update dependenices

chore: update typescript
chore: update github actions deps
fix: correct promise of frame.meta

Closes #245

fix: updates to unblocked closes #241

* fix(core): userprofile storage broken chrome 120

* chore: remove mentions of yarn commands

* chore: typescript 5.3 issues
  • Loading branch information
blakebyrnes authored Feb 1, 2024
1 parent c72447f commit 682dba4
Show file tree
Hide file tree
Showing 32 changed files with 151,002 additions and 3,878 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check README
uses: becheran/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/js-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
name: Build Javascript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node-version: [16, 18, 20]
node-version: [18, 20]
include:
- node-version: 18.x
os: ubuntu-latest
Expand All @@ -25,14 +25,14 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn

- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: '1.20'

Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:

- name: Upload Databases
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-dbs-${{matrix.os}}-${{ matrix.node-version }}
path: test-dbs.tar
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node-version: [16, 18, 20]
node-version: [18, 20]
include:
- node-version: 18.x
os: ubuntu-latest
Expand All @@ -23,9 +23,9 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Upload Databases
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-dbs-${{matrix.os}}-${{ matrix.node-version }}
path: test-dbs.tar
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
Binary file added .yarn/install-state.gz
Binary file not shown.
Loading

0 comments on commit 682dba4

Please sign in to comment.