10000 Release by soedirgo · Pull Request #148 · supabase/postgres-meta · GitHub
[go: up one dir, main page]

Skip to content

Release #148

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

Merged
merged 5 commits into from
Sep 11, 2021
Merged
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
19 changes: 12 additions & 7 deletions .github/workflows/ci.yml
< BB29 td id="diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03fL27" data-line-number="27" class="blob-num blob-num-deletion js-linkable-line-number">
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,20 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Node
uses: actions/setup-node@v2
- uses: actions/setup-node@v2
with:
node-version: "14"

- run: |
docker-compose up --detach
export PG_META_PORT=8000
npm clean-install
npm run dev &
npx wait-for-localhost-cli --use-get $PG_META_PORT
npm test
npm run test

prettier-check:
name: Prettier check
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

- uses: actionsx/prettier@v2
with:
args: --check "{src,test}/**/*.ts"
File renamed without changes.
5 changes: 5 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/*.test.ts']
}
Loading
0