Skip to content

Commit

Permalink
chore(deps-dev): bump ajv-formats from 2.1.1 to 3.0.1 (#544)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump ajv-formats from 2.1.1 to 3.0.1

Bumps [ajv-formats](https://github.com/ajv-validator/ajv-formats) from 2.1.1 to 3.0.1.
- [Release notes](https://github.com/ajv-validator/ajv-formats/releases)
- [Commits](ajv-validator/ajv-formats@v2.1.1...v3.0.1)

---
updated-dependencies:
- dependency-name: ajv-formats
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: replace tests with generator

* fix: update ci

* fix: add secrets

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: sakulstra <lukasstrassel@googlemail.com>
  • Loading branch information
dependabot[bot] and sakulstra committed Aug 26, 2024
1 parent b73c999 commit f3fca96
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/test-release-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ on:
pull_request:

jobs:
test:
test-solidity:
uses: bgd-labs/github-workflows/.github/workflows/foundry-test.yml@main
secrets: inherit
test-js:
uses: bgd-labs/github-workflows/.github/workflows/test-node.yml@main
secrets: inherit
pkg-size-report:
permissions:
pull-requests: write
Expand All @@ -34,6 +38,8 @@ jobs:
release-node-alpha:
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
uses: bgd-labs/github-workflows/.github/workflows/release-node-alpha.yml@main
needs: test
needs:
- test-solidity
- test-js
secrets:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"start": "tsx scripts/generateABIs.ts && tsx scripts/generateAddresses.ts && npm run prettier",
"build": "tsup",
"ci:publish": "npm run build && npm publish --access=public",
"test": "echo 'no tests exist yet'"
"test": "npm run generate:addresses"
},
"repository": {
"type": "git",
Expand All @@ -53,7 +53,7 @@
"@types/node": "^22.4.1",
"@uniswap/token-lists": "^1.0.0-beta.33",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"ajv-formats": "^3.0.1",
"dotenv": "^16.4.1",
"esbuild-plugin-file-path-extensions": "^2.0.0",
"prettier": "^3.0.3",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,10 @@ abitype@1.0.5:
resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.5.tgz#29d0daa3eea867ca90f7e4123144c1d1270774b6"
integrity sha512-YzDhti7cjlfaBhHutMaboYB21Ha3rXR9QTkNJFzYC4kC8YclaiwPBBBJY8ejFdu2wnJeZCVZSMlQJ7fi8S6hsw==

ajv-formats@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520"
integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==
ajv-formats@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz#3d5dc762bca17679c3c2ea7e90ad6b7532309578"
integrity sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==
dependencies:
ajv "^8.0.0"

Expand Down

0 comments on commit f3fca96

Please sign in to comment.