Skip to content

Commit bd6efdf

Browse files
authored
Merge pull request #7 from supabase-community/chore/prepare-renaming
2 parents 6b558f5 + fd7a155 commit bd6efdf

File tree

9 files changed

+704
-694
lines changed

9 files changed

+704
-694
lines changed

.github/workflows/check-dist.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,24 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020

21-
- name: Setup Node
21+
- uses: pnpm/action-setup@v4
22+
name: Install pnpm
23+
with:
24+
version: 10
25+
run_install: false
26+
27+
- name: Install Node.js
2228
uses: actions/setup-node@v4
2329
with:
24-
node-version-file: .nvmrc
25-
cache: npm
30+
node-version: 20
31+
cache: 'pnpm'
2632

2733
- name: Install dependencies
28-
run: npm ci
34+
run: pnpm install
2935

3036
- name: Rebuild the dist/ directory
3137
run: |
32-
npm run build
38+
pnpm run build
3339
3440
- name: Compare the expected and actual dist/ directories
3541
run: |

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.env*
2-
node_modules/
2+
.claude-session-id
3+
node_modules/

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: PostgresTools Cli Action
2-
description: Setup PostgresTools on Github Action Runners
1+
name: Postgres Language Server CLI Action
2+
description: Setup Postgres Language Server on Github Action Runners
33
author: Supabase-Community
44
inputs:
55
version:

0 commit comments

Comments
 (0)