Skip to content

Merge pull request #5 from nokibul/feat/ci #1

Merge pull request #5 from nokibul/feat/ci

Merge pull request #5 from nokibul/feat/ci #1

Workflow file for this run

name: NestJS CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test