Skip to content

Commit c42a753

Browse files
authored
Merge pull request #34 from browser-use/fern-bot/2025-08-31T17-27Z
🌿 Fern Regeneration -- August 31, 2025
2 parents 19dabc0 + a2a2fba commit c42a753

File tree

271 files changed

+9802
-10906
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

271 files changed

+9802
-10906
lines changed

.devcontainer/devcontainer.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

.fernignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Specify files that shouldn't be modified by Fern

.github/workflows/ci.yml

Lines changed: 19 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,88 +1,30 @@
1-
name: CI
2-
on:
3-
push:
4-
branches-ignore:
5-
- 'generated'
6-
- 'codegen/**'
7-
- 'integrated/**'
8-
- 'stl-preview-head/**'
9-
- 'stl-preview-base/**'
10-
pull_request:
11-
branches-ignore:
12-
- 'stl-preview-head/**'
13-
- 'stl-preview-base/**'
1+
name: ci
142

15-
jobs:
16-
lint:
17-
timeout-minutes: 10
18-
name: lint
19-
runs-on: ${{ github.repository == 'stainless-sdks/browser-use-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
20-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
21-
steps:
22-
- uses: actions/checkout@v4
23-
24-
- name: Set up Node
25-
uses: actions/setup-node@v4
26-
with:
27-
node-version: '20'
3+
on: [push]
284

29-
- name: Bootstrap
30-
run: ./scripts/bootstrap
31-
32-
- name: Check types
33-
run: ./scripts/lint
5+
jobs:
6+
compile:
7+
runs-on: ubuntu-latest
348

35-
build:
36-
timeout-minutes: 5
37-
name: build
38-
runs-on: ${{ github.repository == 'stainless-sdks/browser-use-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
39-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
40-
permissions:
41-
contents: read
42-
id-token: write
439
steps:
44-
- uses: actions/checkout@v4
10+
- name: Checkout repo
11+
uses: actions/checkout@v4
4512

46-
- name: Set up Node
47-
uses: actions/setup-node@v4
48-
with:
49-
node-version: '20'
13+
- name: Set up node
14+
uses: actions/setup-node@v3
5015

51-
- name: Bootstrap
52-
run: ./scripts/bootstrap
16+
- name: Compile
17+
run: yarn && yarn build
5318

54-
- name: Check build
55-
run: ./scripts/build
56-
57-
- name: Get GitHub OIDC Token
58-
if: github.repository == 'stainless-sdks/browser-use-typescript'
59-
id: github-oidc
60-
uses: actions/github-script@v6
61-
with:
62-
script: core.setOutput('github_token', await core.getIDToken());
63-
64-
- name: Upload tarball
65-
if: github.repository == 'stainless-sdks/browser-use-typescript'
66-
env:
67-
URL: https://pkg.stainless.com/s
68-
AUTH: ${{ steps.github-oidc.outputs.github_token }}
69-
SHA: ${{ github.sha }}
70-
run: ./scripts/utils/upload-artifact.sh
7119
test:
72-
timeout-minutes: 10
73-
name: test
74-
runs-on: ${{ github.repository == 'stainless-sdks/browser-use-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
75-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
76-
steps:
77-
- uses: actions/checkout@v4
20+
runs-on: ubuntu-latest
7821

79-
- name: Set up Node
80-
uses: actions/setup-node@v4
81-
with:
82-
node-version: '20'
22+
steps:
23+
- name: Checkout repo
24+
uses: actions/checkout@v4
8325

84-
- name: Bootstrap
85-
run: ./scripts/bootstrap
26+
- name: Set up node
27+
uses: actions/setup-node@v3
8628

87-
- name: Run tests
88-
run: ./scripts/test
29+
- name: Compile
30+
run: yarn && yarn test

.github/workflows/publish-npm.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/release-doctor.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
.prism.log
21
node_modules
3-
yarn-error.log
4-
codegen.log
5-
Brewfile.lock.json
6-
dist
7-
dist-deno
8-
/*.tgz
9-
.idea/
10-
11-
.env
2+
.DS_Store
3+
/dist

.npmignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules
2+
src
3+
tests
4+
.gitignore
5+
.github
6+
.fernignore
7+
.prettierrc.yml
8+
tsconfig.json
9+
yarn.lock
10+
pnpm-lock.yaml

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

.prettierrc.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)