diff --git a/.github/workflows/Vedarius-Russell-npm-grunt.yml b/.github/workflows/Vedarius-Russell-npm-grunt.yml new file mode 100644 index 000000000000..7f9b13d52bff --- /dev/null +++ b/.github/workflows/Vedarius-Russell-npm-grunt.yml @@ -0,0 +1,28 @@ +name: NodeJS with Grunt + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x, 16.x, 18.x] + + steps: + - uses: actions/checkout@v3 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + grunt diff --git a/integration/ng-add-standalone/package.json b/integration/ng-add-standalone/package.json index e1c5ee01f262..f96b52d6090e 100644 --- a/integration/ng-add-standalone/package.json +++ b/integration/ng-add-standalone/package.json @@ -25,9 +25,9 @@ "zone.js": "~0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^17.0.0-next.4", - "@angular/cli": "^17.0.0-next.4", - "@angular/compiler-cli": "^17.0.0-next.4", + "@angular-devkit/build-angular": "^17.0.0", + "@angular/cli": "^17.0.0", + "@angular/compiler-cli": "^17.0.0", "@types/jasmine": "~4.3.0", "jasmine-core": "~4.6.0", "karma": "~6.4.0",