Skip to content

Bump AspNetCorePackageVersion from 6.0.10 to 7.0.11 in /generators/server/templates/dotnetcore/src #3816

Bump AspNetCorePackageVersion from 6.0.10 to 7.0.11 in /generators/server/templates/dotnetcore/src

Bump AspNetCorePackageVersion from 6.0.10 to 7.0.11 in /generators/server/templates/dotnetcore/src #3816

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Generator
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
node_version: [16.14.0]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: 'install required npm version'
run: npm install -g npm@$(node -e "console.log(require('./generators/generator-dotnetcore-constants.cjs').NPM_VERSION);")
- run: git --no-pager log -n 10 --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue) <%an>%Creset' --abbrev-commit
shell: bash
- run: npm ci
- run: npm test