8000 Merge pull request #148 from supabase/develop · amyliumaiyi/postgres-meta@7fcffb5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7fcffb5

Browse files
authored
Merge pull request supabase#148 from supabase/develop
Release
2 parents 0d6da4b + 4743d45 commit 7fcffb5

27 files changed

+18547
-8085
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,20 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616

17-
- name: Set up Node
18-
uses: actions/setup-node@v2
17+
- uses: actions/setup-node@v2
1918
with:
2019
node-version: "14"
2120

2221
- run: |
23-
docker-compose up --detach
24-
export PG_META_PORT=8000
2522
npm clean-install
26-
npm run dev &
27-
npx wait-for-localhost-cli --use-get $PG_META_PORT
28-
npm test
23+
npm run test
24+
25+
prettier-check:
26+
name: Prettier check
27+
runs-on: ubuntu-20.04
28+
steps:
29+
- uses: actions/checkout@v2
30+
31+
- uses: actionsx/prettier@v2
32+
with:
33+
args: --check "{src,test}/**/*.ts"
File renamed without changes.

jest.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
preset: 'ts-jest',
3+
testEnvironment: 'node',
4+
testMatch: ['**/*.test.ts']
5+
}

0 commit comments

Comments
 (0)
0