Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion authored Jun 16, 2024
2 parents 00dc754 + 412c660 commit 5deccf0
Show file tree
Hide file tree
Showing 52 changed files with 30,983 additions and 98,959 deletions.
6 changes: 0 additions & 6 deletions .commitlintrc.cjs

This file was deleted.

3 changes: 1 addition & 2 deletions .github/workflows/cloudflare-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ jobs:
working-directory: packages/cloudflare-worker

strategy:
fail-fast: false
matrix:
node-version:
- 14
- 16
- 18
- 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
# with:
# dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel
- run: make build
19 changes: 19 additions & 0 deletions .github/workflows/lint-pr-title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint PR Title

on:
pull_request_target:
types:
- opened
- edited

permissions:
pull-requests: read

jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 1 addition & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ jobs:
working-directory: packages/node

strategy:
fail-fast: false
matrix:
node-version:
- 14
- 16
- 18
- 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/snippets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ jobs:
working-directory: packages/sdk-snippets

strategy:
fail-fast: false
matrix:
node-version:
- 14
- 16
- 18
- 20

Expand Down
4 changes: 0 additions & 4 deletions .husky/commit-msg

This file was deleted.

1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
packages/cloudflare-worker/coverage/
packages/cloudflare-worker/dist/
packages/node/src/.api/
packages/node/coverage/
packages/node/dist/
packages/php/examples/
Expand Down
2,695 changes: 0 additions & 2,695 deletions CHANGELOG.md

This file was deleted.

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ test-webhooks-python-flask: ## Run webhooks tests against the Python SDK + Flask
test-metrics-ruby-rails: ## Run Metrics tests against the Ruby SDK + Rails
docker-compose up --build --detach integration_ruby_rails
sleep 5
npm run test:integration-metrics || make cleanup-failure
SUPPORTS_HASHING=true npm run test:integration-metrics || make cleanup-failure
@make cleanup

test-webhooks-ruby-rails: ## Run webhooks tests against the Ruby SDK + Rails
docker-compose up --build --detach integration_ruby_rails
sleep 5
npm run test:integration-webhooks || make cleanup-failure
SUPPORTS_HASHING=true npm run test:integration-webhooks || make cleanup-failure
@make cleanup
13 changes: 11 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"version": "independent",
"useWorkspaces": true
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"command": {
"publish": {
"message": "chore(release): publish"
},
"version": {
"message": "chore(release): publish"
}
},
"packages": ["packages/*"],
"version": "independent"
}
Loading

0 comments on commit 5deccf0

Please sign in to comment.