mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-08 04:42:57 +00:00
feat(node) Move native packages to @lancedb NPM org (#341)
- Move native packages to @lancedb org - Move package-lock.json update to a reusable action and created a target to run it manually.
This commit is contained in:
22
.github/workflows/update_package_lock/action.yml
vendored
Normal file
22
.github/workflows/update_package_lock/action.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
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
|
||||
Reference in New Issue
Block a user