Skip to content

build : update the alias import for demonstrating import notation simply #58

build : update the alias import for demonstrating import notation simply

build : update the alias import for demonstrating import notation simply #58

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
- develop
- 'feat/*'
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build NestJS project
run: npm run build
- name: Run tests
run: npm test