diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 48751ec..8dbec83 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: cache-name: cache-node-modules with: path: ~/.npm - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package-lock.json') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- @@ -28,6 +28,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: yarn + run: npm ci - name: Run build run: npm run build diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index abc5a19..8477876 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: cache-name: cache-node-modules with: path: ~/.npm - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package-lock.json') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- @@ -28,6 +28,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: yarn + run: npm ci - name: Run lint run: npm run lint diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d1f5bf2..074d050 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: cache-name: cache-node-modules with: path: ~/.npm - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package-lock.json') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- @@ -28,6 +28,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: yarn + run: npm ci - name: Run tests run: npm run test_ci diff --git a/package-lock.json b/package-lock.json index bc59680..33cd16c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,7 +18,7 @@ "@angular/router": "^18.2.8", "bootstrap": "^5.3.1", "marked": "7.0.4", - "ngx-bootstrap": "^12.0.0", + "ngx-bootstrap": "^18.0.0", "rxjs": "~7.8.0", "zone.js": "~0.14.2" }, @@ -58,7 +58,7 @@ "wireit": "^0.14.3" }, "engines": { - "node": "^18 || ^20" + "node": "^18 || ^20 || ^22" } }, "node_modules/@ampproject/remapping": { @@ -13851,17 +13851,17 @@ } }, "node_modules/ngx-bootstrap": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/ngx-bootstrap/-/ngx-bootstrap-12.0.0.tgz", - "integrity": "sha512-6/Hs+FT6peMc+Y2uiOm3IawG06Jh3gLQwwKRBF0U1OMlRbpx4KIyHS9GpZtMevtZaBsCRNfHKiSxwsnvn9wx0Q==", + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/ngx-bootstrap/-/ngx-bootstrap-18.1.3.tgz", + "integrity": "sha512-wSaofPv8UZKVNqm11+PQ6pD9KYRijqOyI4PE9Q8XgxJe18qNtyXnqHhEk1y0zC+jgX/mTFBexkskFWzADoopHw==", "dependencies": { "tslib": "^2.3.0" }, "peerDependencies": { - "@angular/animations": "^17.0.0", - "@angular/common": "^17.0.0", - "@angular/core": "^17.0.0", - "@angular/forms": "^17.0.0", + "@angular/animations": "^18.0.1", + "@angular/common": "^18.0.1", + "@angular/core": "^18.0.1", + "@angular/forms": "^18.0.1", "rxjs": "^6.5.3 || ^7.4.0" } }, diff --git a/package.json b/package.json index 4609302..e66ade9 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "@angular/router": "^18.2.8", "bootstrap": "^5.3.1", "marked": "7.0.4", - "ngx-bootstrap": "^12.0.0", + "ngx-bootstrap": "^18.0.0", "rxjs": "~7.8.0", "zone.js": "~0.14.2" },