forked from mendableai/firecrawl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0c4b24
commit 127d2db
Showing
4 changed files
with
75 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Run JavaScript SDK E2E Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
env: | ||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | ||
BULL_AUTH_KEY: ${{ secrets.BULL_AUTH_KEY }} | ||
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | ||
HOST: ${{ secrets.HOST }} | ||
LLAMAPARSE_API_KEY: ${{ secrets.LLAMAPARSE_API_KEY }} | ||
LOGTAIL_KEY: ${{ secrets.LOGTAIL_KEY }} | ||
POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY }} | ||
POSTHOG_HOST: ${{ secrets.POSTHOG_HOST }} | ||
NUM_WORKERS_PER_QUEUE: ${{ secrets.NUM_WORKERS_PER_QUEUE }} | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
PLAYWRIGHT_MICROSERVICE_URL: ${{ secrets.PLAYWRIGHT_MICROSERVICE_URL }} | ||
PORT: ${{ secrets.PORT }} | ||
REDIS_URL: ${{ secrets.REDIS_URL }} | ||
SCRAPING_BEE_API_KEY: ${{ secrets.SCRAPING_BEE_API_KEY }} | ||
SUPABASE_ANON_TOKEN: ${{ secrets.SUPABASE_ANON_TOKEN }} | ||
SUPABASE_SERVICE_TOKEN: ${{ secrets.SUPABASE_SERVICE_TOKEN }} | ||
SUPABASE_URL: ${{ secrets.SUPABASE_URL }} | ||
TEST_API_KEY: ${{ secrets.TEST_API_KEY }} | ||
HYPERDX_API_KEY: ${{ secrets.HYPERDX_API_KEY }} | ||
HDX_NODE_BETA_MODE: 1 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
services: | ||
redis: | ||
image: redis | ||
ports: | ||
- 6379:6379 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "20" | ||
- name: Install pnpm | ||
run: npm install -g pnpm | ||
- name: Install dependencies for API | ||
run: pnpm install | ||
working-directory: ./apps/api | ||
- name: Start the application | ||
run: npm start & | ||
working-directory: ./apps/api | ||
- name: Start workers | ||
run: npm run workers & | ||
working-directory: ./apps/api | ||
- name: Run E2E tests for JavaScript SDK | ||
run: npm run tests | ||
working-directory: ./apps/js-sdk/firecrawl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters