Skip to content

Commit

Permalink
Fixed lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
flogvit committed Aug 6, 2024
1 parent 50b2110 commit 9cd3bd2
Show file tree
Hide file tree
Showing 3 changed files with 3,930 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Install dependencies
run: npm ci
- name: Remove NestJS packages
run: npm rm @nestjs/common @nestjs/core @nestjs/swagger
- name: Install specific NestJS version
run: npm install @nestjs/common@${{ matrix.nestjs-version }} @nestjs/core@${{ matrix.nestjs-version }} @nestjs/swagger@${{ matrix.nestjs-swagger-version }}
- run: npm run build --if-present
- run: npm test
- name: Build
run: npm run build --if-present
- name: Test
run: npm test
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
node_modules/
dist/
coverage/
package-lock.json
Loading

0 comments on commit 9cd3bd2

Please sign in to comment.