Skip to content

Commit

Permalink
ci 1
Browse files Browse the repository at this point in the history
  • Loading branch information
splix committed Oct 25, 2023
1 parent a18880b commit 69e34fb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ jobs:
- name: Install JS dependencies
run: yarn install

- name: Connect Tailscale
uses: tailscale/github-action@v2
with:
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
tags: tag:ci

- name: Build
run: yarn workspaces foreach run build

Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/EmeraldApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class EmeraldApi {
}

static devApi(credentials?: ChannelCredentials): EmeraldApi {
return new EmeraldApi('api.emeraldpay.dev:443', credentials);
return new EmeraldApi('api4.emeraldpay.dev:443', credentials);
}

static localApi(port = 50051, credentials?: ChannelCredentials): EmeraldApi {
Expand Down

0 comments on commit 69e34fb

Please sign in to comment.