Skip to content
This repository was archived by the owner on Mar 22, 2025. It is now read-only.

ci: add .deepsource.toml #2

ci: add .deepsource.toml

ci: add .deepsource.toml #2

Workflow file for this run

name: CI Node
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm run test