Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
version: 10.31.0
cache: true

- name: Check package versions
shell: bash
run: |
pnpm -r exec node -e "process.exit(require('./package.json').version === '0.0.0' ? 0 : 1)"
Comment thread
fantonangeli marked this conversation as resolved.
Comment thread
fantonangeli marked this conversation as resolved.
- name: Install dependencies
run: pnpm install --frozen-lockfile

Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/ci_check_license_headers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,17 @@ jobs:
- name: Checkout code
uses: actions/checkout@v6

- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24

- name: Setup pnpm
uses: pnpm/action-setup@v5
with:
version: 10.31.0
cache: true

- name: "Setup JDK 17"
uses: actions/setup-java@v5
with:
Expand Down Expand Up @@ -97,3 +108,8 @@ jobs:
else
echo "✅ Apache RAT check PASSED - All files have approved licenses."
fi
- name: Check package.json licenses
shell: bash
run: |
pnpm -r exec node -e "process.exit(require('./package.json').license === 'Apache-2.0' ? 0 : 1)"
Comment thread
fantonangeli marked this conversation as resolved.
Comment thread
fantonangeli marked this conversation as resolved.
13 changes: 12 additions & 1 deletion packages/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
{
"name": "@serverlessworkflow/i18n",
"version": "1.0.0",
"version": "0.0.0",
"description": "Serverless workflow internationalization component",
"keywords": [],
"homepage": "https://github.com/serverlessworkflow/editor",
"bugs": {
"url": "https://github.com/serverlessworkflow/editor/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/serverlessworkflow/editor.git"
},
"files": [
"dist",
"src"
Expand Down
Loading