Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHauschildt committed Mar 26, 2024
1 parent 56957bc commit cbe96a5
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint:check --if-present
- run: npm run build --if-present
- run: npm run test --if-present
- run: npm run package:pack --if-present
- uses: actions/upload-artifact@v4
with:
name: my-artifact
path: releases/
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
build
**/package-lock.json
.vscode/
**/public/
**/public/**
CHANGELOG.md
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"start": "npm run watch",
"watch": "concurrently \"npm run watch --prefix packages/web\" \"npm run watch --prefix packages/node\"",
"build": "npm run build --workspaces --if-present",
"lint": "npx prettier --write --ignore-unknown .",
"lint:fix": "npx prettier -c -w --ignore-unknown .",
"lint:check": "npx prettier -c --ignore-unknown .",
"publish:latest": "npm run publish:latest --workspaces --if-present && npm run deploy-assets",
"publish:next": "npm run publish:next --workspaces --if-present && npm run deploy-assets",
"package:version": "node ./scripts/package-version.mjs",
Expand Down
4 changes: 3 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [1.4.5]

Added ThirdPartyLicenses.json Added
### Added

- Added ThirdPartyLicenses.json Added

## [1.4.0]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cd ---
---
type: Added
# type: Added
# type: Changed
# type: Removed
# type: Security
# private: true
description: |
Added ThirdPartyLicenses.json Added
Added ThirdPartyLicenses.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ type: Added
# type: Security
# private: true
description: |
Added ThirdPartyLicenses.json Added
Added ThirdPartyLicenses.json
2 changes: 1 addition & 1 deletion packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- Added Modnet models Added

- Added option to execute on gpu (webgpu) and cpu Added
- Added option to execute on gpu (webgpu) and cpu Added

- Added isnet model for webgpu Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ type: Added
# type: Security
# private: true
description: |
Added ThirdPartyLicenses.json Added
Added ThirdPartyLicenses.json

0 comments on commit cbe96a5

Please sign in to comment.