Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
Expand All @@ -31,89 +31,89 @@ jobs:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm exec nx affected -t lint

test-affected:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm exec nx affected -t test --skip-nx-cache --parallel=3

e2e-affected:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm exec nx affected -t e2e --exclude=www --parallel=1

build-affected:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm exec nx affected -t build --exclude=www --skip-nx-cache --parallel=3

schematics-core-check:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm run copy:schematics
- run: pnpm run schematics:check
42 changes: 21 additions & 21 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
Expand All @@ -33,93 +33,93 @@ jobs:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm exec nx run-many -t lint

test:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm exec nx run-many -t test --skip-nx-cache --parallel=3

e2e:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm exec nx run-many -t e2e --exclude=www --parallel=1

schematics-core-check:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm run copy:schematics
- run: pnpm run schematics:check

build:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@v5
- run: pnpm exec nx run-many -t build --exclude=www --skip-nx-cache --parallel=3
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: artifact-modules
path: dist/modules
Expand All @@ -128,17 +128,17 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: npm install --global corepack@0.31.0
- run: corepack enable
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: artifact-modules
path: dist
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,25 @@ jobs:
steps:
- name: Generate bot app token
id: generate_token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.NGRX_APP_ID }}
private-key: ${{ secrets.NGRX_APP_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
token: ${{ steps.generate_token.outputs.token }}
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v7
with:
node-version-file: .node-version
- run: npm install --global corepack@0.31.0
- run: corepack enable
- run: pnpm --version
- name: Install dependencies
uses: actions/setup-node@v3
uses: actions/setup-node@v7
with:
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
Expand Down
2 changes: 1 addition & 1 deletion modules/component-store/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generators": {},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/component-store/tsconfig.build.json",
"project": "modules/component-store/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion modules/component/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generators": {},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/component/tsconfig.build.json",
"project": "modules/component/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion modules/data/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generators": {},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/data/tsconfig.build.json",
"project": "modules/data/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion modules/effects/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generators": {},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/effects/tsconfig.build.json",
"project": "modules/effects/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion modules/entity/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generators": {},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/entity/tsconfig.build.json",
"project": "modules/entity/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion modules/operators/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generators": {},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/operators/tsconfig.build.json",
"project": "modules/operators/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion modules/router-store/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generators": {},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/router-store/tsconfig.build.json",
"project": "modules/router-store/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion modules/signals/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generators": {},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/signals/tsconfig.build.json",
"project": "modules/signals/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion modules/store-devtools/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/store-devtools/tsconfig.build.json",
"project": "modules/store-devtools/ng-package.json"
Expand Down
2 changes: 1 addition & 1 deletion modules/store/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generators": {},
"targets": {
"build-package": {
"executor": "@angular-devkit/build-angular:ng-packagr",
"executor": "@angular/build:ng-packagr",
"options": {
"tsConfig": "modules/store/tsconfig.build.json",
"project": "modules/store/ng-package.json"
Expand Down
Loading