Skip to content

Commit

Permalink
Fixed path to action
Browse files Browse the repository at this point in the history
  • Loading branch information
flogvit committed Aug 6, 2024
1 parent 8a13daf commit ab24002
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
28 changes: 0 additions & 28 deletions .github/workflows

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
nestjs-version: [7.x, 8.x, 9.x, 10.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Install specific NestJS version
run: npm install @nestjs/common@${{ matrix.nestjs-version }} @nestjs/core@${{ matrix.nestjs-version }} @nestjs/platform-express@${{ matrix.nestjs-version }}
- run: npm run build --if-present
- run: npm test

0 comments on commit ab24002

Please sign in to comment.