Skip to content

Commit

Permalink
Merge pull request #5 from nokibul/feat/ci
Browse files Browse the repository at this point in the history
added github action files
  • Loading branch information
nokibul authored Mar 10, 2024
2 parents 0b92968 + bcd56f1 commit 4a1464c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/first-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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

0 comments on commit 4a1464c

Please sign in to comment.