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

feat(node): Add genericPool integration using opentelemetry instrumentation #13356

Closed
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1adaaac
feat(node): add genericPool integration using opentelemetry instrumen…
Zen-cronic Aug 13, 2024
11b6ffe
Merge branch 'develop' into feat/genericPoolIntegration-node
Zen-cronic Aug 13, 2024
69f52db
feat(node): Add genericPool integration using opentelemetry instrumen…
Zen-cronic Aug 13, 2024
0c06d16
fix(nestjs): Exception filters in main app module are not being execu…
nicohrubec Aug 13, 2024
c0239b1
feat(deps): bump @prisma/instrumentation from 5.17.0 to 5.18.0 (#13327)
dependabot[bot] Aug 14, 2024
22878c7
ci: Streamline some caching (#13355)
mydea Aug 14, 2024
6d5c5c6
meta: Update Changelog for 8.26.0
Lms24 Aug 13, 2024
c1a775b
release: 8.26.0
getsentry-bot Aug 13, 2024
3db3ba0
ci: Streamline browser & node unit tests (#13307)
mydea Aug 14, 2024
94ad46a
fix(solidstart): Make back navigation test less flaky (#13374)
andreiborza Aug 14, 2024
5e26092
ci: Only store playwright cache on develop (#13358)
mydea Aug 14, 2024
d4c7a09
feat: Add options for passing nonces to feedback integration (#13347)
chargome Aug 14, 2024
fa93e11
ci: Improve size-limit CI action (#13348)
mydea Aug 14, 2024
e4129bc
test: Ensure browser-integration-tests cannot conflict due to build (…
mydea Aug 14, 2024
601a6bf
Revert "build: Bump node to 22.5.1" (#13367)
AbhiPrasad Aug 14, 2024
46988f3
fix(deno): Don't rely on `Deno.permissions.querySync` (#13378)
lforst Aug 14, 2024
7c6d97f
test(e2e): Fix flake in default browser e2e test (#13379)
Lms24 Aug 14, 2024
6dbffe8
test(e2e): Add Astro 4 E2E test app (#13375)
Lms24 Aug 14, 2024
2f11b7e
docs: Fix v7 changelog format and link (#13395)
charpeni Aug 16, 2024
a7aa35c
ci: Fix crypto not being available (#13385)
lforst Aug 16, 2024
ba9a704
ref: Add external contributor to CHANGELOG.md (#13400)
github-actions[bot] Aug 16, 2024
0d3d2a1
docs(cloudflare): Fix spacing in README snippet (#13368)
AbhiPrasad Aug 26, 2024
fba8cc7
feat(feedback): Improve error message for 403 errors (#13441)
c298lee Aug 26, 2024
f1182d3
feat(node): add genericPool integration using opentelemetry instrumen…
Zen-cronic Aug 13, 2024
43c40f8
feat(node): Add genericPool integration using opentelemetry instrumen…
Zen-cronic Aug 13, 2024
37cc42e
test(node): Add tests for genericPoolIntegration
Zen-cronic Aug 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: Only store playwright cache on develop (#13358)
Should reduce amount of cached data.
  • Loading branch information
mydea authored and Zen-cronic committed Aug 26, 2024
commit 5e26092ce007240f2c2bf97feaf6e69bfa7461e6
13 changes: 11 additions & 2 deletions .github/actions/install-playwright/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,23 @@ runs:
run: echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
shell: bash

- name: Cache playwright binaries
uses: actions/cache@v4
- name: Restore cached playwright binaries
uses: actions/cache/restore@v4
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}

# Only store cache on develop branch
- name: Store cached playwright binaries
uses: actions/cache/save@v4
if: github.event_name == 'push' && github.ref == 'refs/heads/develop'
with:
path: |
~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}

# We always install all browsers, if uncached
- name: Install Playwright dependencies (uncached)
run: npx playwright install chromium webkit firefox --with-deps
Expand Down