File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ main, master ]
6+ pull_request :
7+ branches : [ main, master ]
8+
9+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ node-version : [20.x]
15+
16+ steps :
17+ - name : Checkout repository
18+ uses : actions/checkout@v3
19+
20+ - name : Setup Node.js
21+ uses : actions/setup-node@v3
22+ with :
23+ node-version : ${{ matrix.node-version }}
24+ cache : " npm"
25+
26+ - name : Install dependencies
27+ run : npm install
28+
29+ - name : Run tests
30+ run : npm run test
31+
32+ - name : Build
33+ run : npm run build
34+
35+ - name : Run tests with coverage
36+ run : npm run coverage
Original file line number Diff line number Diff line change 1+ [ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-blue.svg )] ( https://opensource.org/licenses/MIT )
2+ [ ![ jsdoc] ( https://img.shields.io/static/v1?label=jsdoc&message=%20api%20&color=blue )] ( https://jsdoc.app/ )
3+ ![ Build & Test] ( https://github.com/db-developer/ts-obsidian-log/actions/workflows/ci.yml/badge.svg )
4+
15[ BOTTOM] ( #project-structure ) [ CHANGELOG] ( CHANGELOG.md ) [ LICENSE] ( LICENSE ) [ ROADMAP] ( ROADMAP.md )
26
37# Obsidian Log Utility
You can’t perform that action at this time.
0 commit comments