Skip to content

Commit

Permalink
fix(types): fixes an issue with Request type #289
Browse files Browse the repository at this point in the history
fix(types): fixes an issue with Request type
  • Loading branch information
pavankjadda authored Nov 8, 2023
2 parents 1e45c1d + 7e0ab9e commit e4eddf6
Show file tree
Hide file tree
Showing 8 changed files with 10,682 additions and 19,904 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,22 @@ jobs:
node: ['18']
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm i --legacy-peer-deps
run: pnpm install --frozen-lockfile
- name: Lint
run: npm run lint
run: pnpm lint
- name: Format check
run: npm run format:check
run: pnpm format:check
- name: Build
run: npm run build --configuration=production && npm run build:ngx-cookie-service-ssr --configuration=production
run: pnpm build --configuration=production && pnpm build:ngx-cookie-service-ssr --configuration=production
# - name: Test
# run: npm run test
env:
CI: true
# run: pnpm test
# env:
# CI: true
7 changes: 5 additions & 2 deletions .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v2
with:
node-version: 18
- name: Install NPM Dependencies
run: npm install --legacy-peer-deps
run: pnpm install --frozen-lockfile
- name: Build project
run: npm run build --configuration=production
run: pnpm build --configuration=production
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v3
with:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/npm_publish_ssr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v2
with:
node-version: 18
- name: Install NPM Dependencies
run: npm install --legacy-peer-deps
- name: Install PNPM Dependencies
run: pnpm install --frozen-lockfile
- name: Build project
run: npm run build:ngx-cookie-service-ssr
run: pnpm build:ngx-cookie-service-ssr
- name: Publish to NPM registry
uses: JS-DevTools/npm-publish@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ dist
.angular
.github
README.md
package-lock.json
pnpm-lock.yaml
Loading

0 comments on commit e4eddf6

Please sign in to comment.