-
Notifications
You must be signed in to change notification settings - Fork 4
Add Fern Integration #36
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
Changes from all commits
a2a2fba
c42a753
59fcbde
d8499c4
2ddd3ff
17bb9b4
870eaee
5847acd
dd42408
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Specify files that shouldn't be modified by Fern | ||
src/wrapper/ | ||
examples/ | ||
.vscode/ | ||
|
||
.gitignore |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,30 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'generated' | ||
- 'codegen/**' | ||
- 'integrated/**' | ||
- 'stl-preview-head/**' | ||
- 'stl-preview-base/**' | ||
pull_request: | ||
branches-ignore: | ||
- 'stl-preview-head/**' | ||
- 'stl-preview-base/**' | ||
name: ci | ||
|
||
jobs: | ||
lint: | ||
timeout-minutes: 10 | ||
name: lint | ||
runs-on: ${{ github.repository == 'stainless-sdks/browser-use-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
on: [push] | ||
|
||
- name: Bootstrap | ||
run: ./scripts/bootstrap | ||
|
||
- name: Check types | ||
run: ./scripts/lint | ||
jobs: | ||
compile: | ||
runs-on: ubuntu-latest | ||
|
||
build: | ||
timeout-minutes: 5 | ||
name: build | ||
runs-on: ${{ github.repository == 'stainless-sdks/browser-use-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
- name: Set up node | ||
uses: actions/setup-node@v3 | ||
|
||
- name: Bootstrap | ||
run: ./scripts/bootstrap | ||
- name: Compile | ||
run: yarn && yarn build | ||
|
||
- name: Check build | ||
run: ./scripts/build | ||
|
||
- name: Get GitHub OIDC Token | ||
if: github.repository == 'stainless-sdks/browser-use-typescript' | ||
id: github-oidc | ||
uses: actions/github-script@v6 | ||
with: | ||
script: core.setOutput('github_token', await core.getIDToken()); | ||
|
||
- name: Upload tarball | ||
if: github.repository == 'stainless-sdks/browser-use-typescript' | ||
env: | ||
URL: https://pkg.stainless.com/s | ||
AUTH: ${{ steps.github-oidc.outputs.github_token }} | ||
SHA: ${{ github.sha }} | ||
run: ./scripts/utils/upload-artifact.sh | ||
test: | ||
Check warningCode scanning / CodeQL Workflow does not contain permissions Medium
Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
|
||
timeout-minutes: 10 | ||
name: test | ||
runs-on: ${{ github.repository == 'stainless-sdks/browser-use-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork | ||
steps: | ||
- uses: actions/checkout@v4 | ||
runs-on: ubuntu-latest | ||
|
||
- name: Set up Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Bootstrap | ||
run: ./scripts/bootstrap | ||
- name: Set up node | ||
uses: actions/setup-node@v3 | ||
|
||
- name: Run tests | ||
run: ./scripts/test | ||
- name: Compile | ||
run: yarn && yarn test | ||
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
.prism.log | ||
node_modules | ||
yarn-error.log | ||
codegen.log | ||
Brewfile.lock.json | ||
dist | ||
dist-deno | ||
/*.tgz | ||
.idea/ | ||
.DS_Store | ||
/dist | ||
.cursor | ||
|
||
.env | ||
.env* | ||
!.env.example |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
node_modules | ||
src | ||
tests | ||
.gitignore | ||
.github | ||
.fernignore | ||
.prettierrc.yml | ||
tsconfig.json | ||
yarn.lock | ||
pnpm-lock.yaml |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tabWidth: 4 | ||
printWidth: 120 |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"editor.indentSize": 4, | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": true, | ||
"editor.detectIndentation": false, | ||
"[typescript]": { | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": true | ||
}, | ||
"[javascript]": { | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": true | ||
}, | ||
"[json]": { | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": true | ||
}, | ||
"[markdown]": { | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": true | ||
}, | ||
"[yaml]": { | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": true | ||
} | ||
} |
This file was deleted.
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Copilot Autofix
AI 27 days ago
To fix the problem, you should add an explicit
permissions
key that limits the GITHUB_TOKEN privileges to read-only for repository contents. The best way is to add a root-levelpermissions
block, which applies to all jobs in the workflow unless overridden. This should be placed after thename:
andon:
entries, beforejobs:
. No other code changes are required, and there is no functional impact—build and test actions do not require write permissions.