Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add basic tests + travis-ci #20

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
dist/
worker/
24 changes: 24 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"env": {
"worker": true
},
"parserOptions": {
"sourceType": "module"
},
"overrides": [
{
"files": "webpack.config.js",
"env": {
"node": true
}
}
]
}
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dist
node_modules
worker
wrangler.toml
node_modules/
dist/
worker/
wrangler.toml
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
dist/
worker/
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: node_js
cache: yarn
node_js:
- 12
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
![Notion API Worker](https://user-images.githubusercontent.com/1440854/79893752-cc448680-8404-11ea-8d19-e0308eb32028.png)
![API Version](https://badgen.net/badge/API%20Version/v1/green)
[![Build Status](https://travis-ci.com/splitbee/notion-api-worker.svg?branch=master)](https://travis-ci.com/splitbee/notion-api-worker)

A **serverless wrapper** for the private Notion API. It provides fast and easy access to your Notion content.
Ideal to make Notion your CMS.
Expand Down
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"build": "webpack",
"dev": "wrangler dev",
"preview": "wrangler preview",
"deploy": "wrangler publish -e production"
"deploy": "wrangler publish -e production",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:prettier": "prettier '**/*.{ts,json}' --check"
},
"dependencies": {
"tiny-request-router": "^1.2.2"
Expand All @@ -16,7 +19,13 @@
"@cloudflare/workers-types": "^1.0.9",
"@cloudflare/wrangler": "^1.10.1",
"@types/node": "^13.13.1",
"prettier": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
Expand Down
2 changes: 1 addition & 1 deletion src/api/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const idToUuid = (path: string) =>

export const parsePageId = (id: string) => {
if (id) {
const rawId = id.replace(/\-/g, "").slice(-32);
const rawId = id.replace(/-/g, "").slice(-32);
return idToUuid(rawId);
}
};
Expand Down
3 changes: 2 additions & 1 deletion src/routes/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const getTableData = async (
const rows: Row[] = [];

for (const td of tableData) {
let row: Row = { id: td.value.id };
const row: Row = { id: td.value.id };

for (const key of collectionColKeys) {
const val = td.value.properties[key];
Expand All @@ -50,6 +50,7 @@ export const getTableData = async (
}
}
}

rows.push(row);
}

Expand Down
1 change: 1 addition & 0 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export interface Caches {
};
}

// eslint-disable-next-line no-unused-vars
declare let caches: Caches;

declare global {
Expand Down
Loading