Merge branch main back into develop #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test NestJS schematics | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
render: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- run: npm install --global @nestjs/cli@^10 | |
name: Install NestJS CLI globally | |
- run: | | |
npm clean-install --no-audit --ignore-scripts --prefer-offline | |
npm run build | |
npm install --global . | |
name: Install schematics globally | |
- run: > | |
nest new test-app --dry-run | |
--package-manager npm | |
--collection @tseisel/nestjs-schematics | |
name: Test generating a new NestJS application | |
timeout-minutes: 1 |