Skip to content

Commit

Permalink
flatten file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
nealwp committed Feb 4, 2024
1 parent 3ac1614 commit bfbf1bf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build & Test
on:
push:

Expand All @@ -10,5 +10,9 @@ jobs:
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Type Check
run: num run check
- name: Lint
run: npm run lint
- name: Test
run: npm test
File renamed without changes.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/env node
import dit from './lib/dit';
import dit from './dit';
import sqlite3 from 'sqlite3';
import { open } from 'sqlite';
import { existsSync, mkdirSync } from 'node:fs';
Expand Down
File renamed without changes.

0 comments on commit bfbf1bf

Please sign in to comment.