Skip to content

Featur: Tests.

Featur: Tests. #2

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
docker:
image: docker:20.10.7
options: --privileged
ports:
- 4566:4566
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18.18.0"
- name: Install dependencies
run: npm install
- name: Run tests with handler
run: npm run test:handler