produce artifacts on GH CI, fix missing package-lock
This commit is contained in:
parent
def6fcb322
commit
e7101ac644
|
@ -26,6 +26,13 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
- run: npm i
|
- run: npm ci
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
- run: npm test --if-present
|
- run: npm test --if-present
|
||||||
|
- name: Archive artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: obsidian-sample-plugin-artifacts
|
||||||
|
path: |
|
||||||
|
main.js
|
||||||
|
manifest.json
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue