Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci
- uses: nrwl/nx-set-shas@v4

# Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci
- uses: nrwl/nx-set-shas@v4

- name: Run postgrest-js integration tests (if affected)
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Check if database schema changed
id: check_changes
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci-supabase-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- uses: nrwl/nx-set-shas@v4

Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Type Check + Unit Tests + Coverage
run: npx nx run-many --targets=test:types,test:coverage --projects=supabase-js
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
path: packages/core

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Start Verdaccio
run: |
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:

- name: Install dependencies and build
run: |
npm ci --legacy-peer-deps
npm ci
npx nx build supabase-js

- name: Install jq
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
path: packages/core

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Start Verdaccio
run: |
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:
cp -r packages/core/supabase-js/test/integration/next/* "$TEST_DIR/"
cd "$TEST_DIR"
echo "registry=http://localhost:4873/" > .npmrc
npm install --legacy-peer-deps
npm install
npx playwright install --with-deps
npm run test
rm -f .npmrc
Expand Down Expand Up @@ -374,7 +374,7 @@ jobs:
path: packages/core

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Start Verdaccio
run: |
Expand Down Expand Up @@ -460,7 +460,7 @@ jobs:
path: packages/core

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Start Verdaccio
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Set up Nx SHAs
uses: nrwl/nx-set-shas@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: npm install -g npm@latest

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Configure git
run: |
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
- name: Update npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci
- name: Configure git
run: |
git config --global user.name "supabase-releaser[bot]"
Expand Down
213 changes: 213 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading