Skip to content

Commit

Permalink
Merge pull request #287 from stevermeister/development
Browse files Browse the repository at this point in the history
feat(core): adds angular 17.0.0-rc.3
  • Loading branch information
pavankjadda authored Nov 7, 2023
2 parents f7625d7 + ce6dec3 commit 58ed80a
Show file tree
Hide file tree
Showing 11 changed files with 20,006 additions and 10,451 deletions.
17 changes: 17 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries

# For the full list of supported browsers by the Angular framework, please see:
# https://angular.io/guide/browser-support

# You can see what browsers were selected by your queries by running:
# npx browserslist

last 10 Chrome versions
last 10 ChromeAndroid versions
last 10 Firefox versions
last 10 Edge major versions
last 3 Safari major versions
last 3 iOS major versions

15 changes: 6 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,19 @@ 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: pnpm install --frozen-lockfile
run: npm i --legacy-peer-deps
- name: Lint
run: pnpm lint
run: npm run lint
- name: Format check
run: pnpm format:check
run: npm run format:check
- name: Build
run: pnpm build --configuration=production && pnpm build:ngx-cookie-service-ssr --configuration=production
- name: Test
run: pnpm test
run: npm run build --configuration=production && npm run build:ngx-cookie-service-ssr --configuration=production
# - name: Test
# run: npm run test
env:
CI: true
9 changes: 3 additions & 6 deletions .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@ 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: pnpm install --frozen-lockfile
run: npm install --legacy-peer-deps
- name: Build project
run: pnpm build --configuration=production
run: npm run build --configuration=production
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v1
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
package: dist/ngx-cookie-service/package.json
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/npm_publish_ssr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: npm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v2
with:
node-version: 18
- name: Install PNPM Dependencies
run: pnpm install --frozen-lockfile
- name: Install NPM Dependencies
run: npm install --legacy-peer-deps
- name: Build project
run: pnpm build:ngx-cookie-service-ssr
run: npm run build:ngx-cookie-service-ssr
- name: Publish to NPM registry
uses: JS-DevTools/npm-publish@v1
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
package: dist/ngx-cookie-service-ssr/package.json
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
pnpm-lock.yaml
package-lock.json
Loading

0 comments on commit 58ed80a

Please sign in to comment.