mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-14 07:42:58 +00:00
- Move native packages to @lancedb org - Move package-lock.json update to a reusable action and created a target to run it manually.
23 lines
561 B
YAML
23 lines
561 B
YAML
name: update_package_lock
|
|
description: "Update node's package.lock"
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
- name: Set git configs
|
|
shell: bash
|
|
run: |
|
|
git config user.name 'Lance Release'
|
|
git config user.email 'lance-dev@lancedb.com'
|
|
- name: Update package-lock.json file
|
|
working-directory: ./node
|
|
run: |
|
|
npm install
|
|
git add package-lock.json
|
|
git commit -m "Updating package-lock.json"
|
|
git push
|
|
shell: bash
|