Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…-monorepo into remove-querystring
  • Loading branch information
talentlessguy committed Jan 1, 2025
2 parents 557182d + 1463ac8 commit c9cb547
Show file tree
Hide file tree
Showing 103 changed files with 5,359 additions and 1,380 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"no-useless-constructor": "off",
"no-use-before-define": "off",
"curly": "off",
"prefer-promise-reject-errors": "off"
"prefer-promise-reject-errors": "off",
"import/no-extraneous-dependencies": ["error"]
},
"ignorePatterns": ["dist", "**/node_modules/*"],
"env": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_sign_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
restore-keys: |
${{ runner.os }}-buildx-
- name: Build, tag, and push image to Amazon ECR
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: sign-client
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/intake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: github.event.action == 'labeled' && github.event.label.name == 'accepted'
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected].1
- uses: actions/[email protected].2
with:
project-url: https://github.com/orgs/WalletConnect/projects/6
github-token: ${{ secrets.ASSIGN_TO_PROJECT_GITHUB_TOKEN }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: setup-node
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: install
Expand Down Expand Up @@ -72,6 +72,8 @@ jobs:
env:
TEST_RELAY_URL: ${{ secrets.TEST_RELAY_URL }}
TEST_PROJECT_ID: ${{ secrets.TEST_PROJECT_ID }}
TEST_PROJECT_ID_MOBILE: ${{ vars.TEST_PROJECT_ID_MOBILE }}
TEST_MOBILE_APP_ID: ${{ vars.TEST_MOBILE_APP_ID }}
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish to NPM
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies and build 🔧
run: npm ci && npm run build
- name: Publish package on NPM 📦
run: npm run npm-publish:latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5 changes: 5 additions & 0 deletions funding.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"opRetro": {
"projectId": "0xf5af54fc0c301d0714cbbba7624a5f82960590b62196780e4aa841f1ce17214b"
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"packages/*",
"providers/*"
],
"version": "2.13.3"
"version": "2.17.3"
}
Loading

0 comments on commit c9cb547

Please sign in to comment.