Skip to content

refactor: refactor code to make code cleaner (#7) #27

refactor: refactor code to make code cleaner (#7)

refactor: refactor code to make code cleaner (#7) #27

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
options: --entrypoint redis-server
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.15.0'
- name: Install dependencies
run: npm install
- name: Run all tests
run: npm run test