Skip to content

Commit

Permalink
feat: adding common constant for refresh token (#53)
Browse files Browse the repository at this point in the history
* feat: adding common constant for refresh token

* trying to fix the broken build again
  • Loading branch information
aversini authored Jun 28, 2024
1 parent 2a2665c commit 600af2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
- run: |
pnpm install
pnpm install --ignore-scripts
npx lerna run build
npx lerna run stats:pr
npx lerna run stats:report
Expand All @@ -51,7 +51,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
- run: |
pnpm install
pnpm install --ignore-scripts
npx lerna run lint
npx lerna run build
npx lerna run test:coverage
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
- run: |
pnpm install
pnpm install --ignore-scripts
npx lerna run build
npx lerna run stats:release
- name: Commit Release Stats
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Build Packages
if: ${{ steps.release.outputs.releases_created }}
run: |
pnpm install
pnpm install --ignore-scripts
npx lerna run build
# Release Please has already incremented versions
Expand Down
1 change: 1 addition & 0 deletions packages/auth-common/src/components/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export const AUTH_TYPES = {
ACCESS_TOKEN: "token",
ID_AND_ACCESS_TOKEN: "id_token token",
CODE: "code",
REFRESH_TOKEN: "refresh_token",
};

export const HEADERS = {
Expand Down

0 comments on commit 600af2f

Please sign in to comment.