Browse Source

Merge pull request #8186 from nocodb/chore/package-lock

Update package-lock.json before creating master-develop sync commit
pull/8190/head
Mert E 3 months ago committed by GitHub
parent
commit
af589aba53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      .github/workflows/sync-to-develop.yml

5
.github/workflows/sync-to-develop.yml

@ -13,6 +13,10 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18.19.1
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Checkout
uses: actions/checkout@v3
with:
@ -39,6 +43,7 @@ jobs:
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
revertSDK=true node scripts/upgradeNocodbSdk.js
pnpm bootstrap
git add .
git diff-index --quiet HEAD || git commit -m "chore: update sdk path"
git push origin $BRANCH_NAME

Loading…
Cancel
Save