-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into aggregate-error
- Loading branch information
Showing
55 changed files
with
16,801 additions
and
29,046 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
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,21 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/v16.12.0/schemas/config.json", | ||
"release-type": "node", | ||
"include-component-in-tag": false, | ||
"changelog-sections": [ | ||
{ "type": "feat", "section": "🌟 Features", "hidden": false }, | ||
{ "type": "fix", "section": "🩹 Fixes", "hidden": false }, | ||
{ "type": "docs", "section": "📚 Documentation", "hidden": false }, | ||
|
||
{ "type": "chore", "section": "🧹 Chores", "hidden": false }, | ||
{ "type": "perf", "section": "🧹 Chores", "hidden": false }, | ||
{ "type": "refactor", "section": "🧹 Chores", "hidden": false }, | ||
{ "type": "test", "section": "🧹 Chores", "hidden": false }, | ||
|
||
{ "type": "build", "section": "🤖 Automation", "hidden": false }, | ||
{ "type": "ci", "section": "🤖 Automation", "hidden": true } | ||
], | ||
"packages": { | ||
".": {} | ||
} | ||
} |
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 @@ | ||
{".":"10.7.2"} |
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 |
---|---|---|
@@ -1,39 +1,30 @@ | ||
name: Browser Tests for forked PRs | ||
'on': | ||
pull_request_target: | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- labeled | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
jobs: | ||
test-browser: | ||
# TODO: configure to retain build artifacts in `.karma/` dir | ||
name: 'Browser Tests' | ||
timeout-minutes: 20 | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.pull_request.labels.*.name, 'run-browser-test') | ||
uses: ./.github/workflows/npm-script.yml | ||
secrets: inherit | ||
with: | ||
npm-script: test.browser | ||
|
||
remove-label: | ||
needs: test-browser | ||
if: always() | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: lts/* | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
persist-credentials: false | ||
- name: 'Cache node_modules' | ||
uses: actions/cache@v4 | ||
with: | ||
path: '~/.npm' | ||
key: "ubuntu-latest-node-full-lts-${{ hashFiles('**/package-lock.json') }}" | ||
- name: Install Dependencies | ||
run: npm ci | ||
- name: Run Browser Tests | ||
run: npm start test.browser | ||
env: | ||
SAUCE_USERNAME: '${{secrets.SAUCE_USERNAME}}' | ||
SAUCE_ACCESS_KEY: '${{secrets.SAUCE_ACCESS_KEY}}' | ||
- name: remove 'run-browser-test' label | ||
uses: buildsville/[email protected] | ||
if: ${{ always() }} | ||
uses: buildsville/add-remove-label@ac59c9f0aeb66eb12d6366eb1d69ec1906e9ef9a | ||
with: | ||
token: ${{secrets.GITHUB_TOKEN}} | ||
label: run-browser-test | ||
|
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.