Skip to content

Commit

Permalink
Add Redis support (#8)
Browse files Browse the repository at this point in the history
* refactor: Move MongoDB specific code to its dedicated repository class

* feat: Add Redis support

* 1.0.0-alpha.4

* ci: Run with Node instead of Bun

* test: Migrate from jest to vitest

* fix: First ingest relations before possibly marking bucket as immutable

* 1.0.0-alpha.5

* fix: Only handle record if it carries data

* 1.0.0-alpha.6

* refactor: Simplify bucket handling
  • Loading branch information
smessie authored Oct 14, 2024
1 parent de7ec6b commit e735dca
Show file tree
Hide file tree
Showing 12 changed files with 1,938 additions and 1,779 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test with Bun
name: Build & Test with Node.js

on:
push:
Expand All @@ -10,14 +10,15 @@ jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout
uses: actions/checkout@v3 # Checkout repo

- name: Setup Bun
uses: oven-sh/setup-bun@v1 # Setup bun
- name: Setup Node.js
uses: actions/setup-node@v3 # Setup node
with:
bun-version: latest
node-version: 20.x
cache: 'npm'

- run: bun i # Install dependencies
- run: bun run build # Build sources
- run: bun test # Run tests
- run: npm ci # Install dependencies
- run: npm run build # Build sources
- run: npm run test # Run tests
4 changes: 2 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
allConfig: js.configs.all,
});

export default [{
Expand All @@ -38,4 +38,4 @@ export default [{
semi: ["error", "always"],
"@typescript-eslint/no-unused-vars": "warn",
},
}];
}];
Loading

0 comments on commit e735dca

Please sign in to comment.