Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
211818a
chore: remove lerna
OS-pedrogustavobilro Oct 23, 2025
cfeede6
chore: pnpm i
OS-pedrogustavobilro Oct 23, 2025
67c97de
chore: remove unused release workflows
OS-pedrogustavobilro Oct 23, 2025
e0b2e5a
chore: remove scripts references from root package.json
OS-pedrogustavobilro Oct 23, 2025
9e94c6a
ci: Add workflow for continuous integration
OS-pedrogustavobilro Oct 23, 2025
25a0e9f
ci: run CI before release
OS-pedrogustavobilro Oct 23, 2025
e939d85
chore: fix workflow step name
OS-pedrogustavobilro Oct 23, 2025
d7e285e
fix: update outsystems-wrapper
OS-pedrogustavobilro Oct 23, 2025
03f45cc
chore: update package-lock.json
OS-pedrogustavobilro Oct 23, 2025
32327d1
fix: outsystems-wrapper build (again)
OS-pedrogustavobilro Oct 23, 2025
c8fc295
ci: build outsystems-wrapper in macos
OS-pedrogustavobilro Oct 23, 2025
33fe118
ci: use npm ci for outsystems-wrapper
OS-pedrogustavobilro Oct 23, 2025
e9fbcef
test: debug diff files
OS-pedrogustavobilro Oct 23, 2025
7277aab
test: add missing directory to debug step
OS-pedrogustavobilro Oct 23, 2025
c5e191d
ci: move copy out of dist file
OS-pedrogustavobilro Oct 23, 2025
80d9a3c
revert: debug, mac-os and npm ci
OS-pedrogustavobilro Oct 23, 2025
f2b56ec
chore: include semantic-release dependencies
OS-pedrogustavobilro Oct 23, 2025
1b6b4e3
ci: Release plugin with semantic-release
OS-pedrogustavobilro Oct 23, 2025
82a1c4a
fix: use cjs instead of js for release config
OS-pedrogustavobilro Oct 23, 2025
b08fb21
chore: update tag used by semantic-release
OS-pedrogustavobilro Oct 23, 2025
0ea568a
chore: fix location of semantic-release dependency
OS-pedrogustavobilro Oct 23, 2025
6ea5630
chore: update pnpm lock file
OS-pedrogustavobilro Oct 23, 2025
3950b78
chore: add xml2js dependency
OS-pedrogustavobilro Oct 23, 2025
7d4dde9
ci: add missing npm install at root
OS-pedrogustavobilro Oct 23, 2025
96fe350
chore: re-arrange release.config prepare
OS-pedrogustavobilro Oct 23, 2025
e6b0333
chore(release): 1.1.1 [skip ci]
semantic-release-bot Oct 23, 2025
2656ad9
fix: detect identation in plugin.xml for release updates
OS-pedrogustavobilro Oct 23, 2025
7a2f334
Merge branch 'main' of https://github.com/OS-pedrogustavobilro/cordov…
OS-pedrogustavobilro Oct 23, 2025
13bd340
chore(release): 1.1.2 [skip ci]
semantic-release-bot Oct 23, 2025
1e8bf4e
feat: Proper indentation on plugin.xml
OS-pedrogustavobilro Oct 23, 2025
0233cb0
docs: remove CHANGELOG header
OS-pedrogustavobilro Oct 23, 2025
3e79955
chore(release): 1.2.0 [skip ci]
semantic-release-bot Oct 23, 2025
e4c1365
fix!: Change synapse usage
OS-pedrogustavobilro Oct 23, 2025
7d6aa8d
Merge branch 'main' of https://github.com/OS-pedrogustavobilro/cordov…
OS-pedrogustavobilro Oct 23, 2025
01a3d4f
chore: update docgen
OS-pedrogustavobilro Oct 23, 2025
ea349fd
fix: use npm ci
OS-pedrogustavobilro Oct 23, 2025
ab361ba
chore: update rimraf version
OS-pedrogustavobilro Oct 23, 2025
bda6c0b
chore: use npm install in ci
OS-pedrogustavobilro Oct 23, 2025
ce65ee1
chore: update package-lock.json for cordova plugin
OS-pedrogustavobilro Oct 23, 2025
7ce12b8
revert: "chore: use npm install in ci"
OS-pedrogustavobilro Oct 23, 2025
ff2ca67
chore(release): 1.2.1 [skip ci]
semantic-release-bot Oct 23, 2025
99730fa
feat: Use different name for timestamp
OS-pedrogustavobilro Oct 23, 2025
32e56a6
Merge branch 'main' of https://github.com/OS-pedrogustavobilro/cordov…
OS-pedrogustavobilro Oct 23, 2025
c6ff6d1
chore: update other package-lock.json files
OS-pedrogustavobilro Oct 23, 2025
900cae0
chore: mock revert for breaking change
OS-pedrogustavobilro Oct 23, 2025
2b66c43
chore: update outsystems-wrapper
OS-pedrogustavobilro Oct 23, 2025
8fb499e
chore(release): 2.0.0 [skip ci]
semantic-release-bot Oct 23, 2025
59d18f6
ci: Validate PR titles for conventional commit format
OS-pedrogustavobilro Oct 23, 2025
58e87f8
Merge branch 'main' of https://github.com/OS-pedrogustavobilro/cordov…
OS-pedrogustavobilro Oct 23, 2025
e29482d
chore: Fix release comment
OS-pedrogustavobilro Oct 23, 2025
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
21 changes: 21 additions & 0 deletions .github/actions/setup-tools/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 'Setup Tools'
description: 'Setup tools needed in repo'

runs:
using: 'composite'
steps:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 25
- name: Install dependencies root
shell: bash
run: npm ci
- name: Install dependencies plugin
working-directory: ./packages/cordova-plugin
shell: bash
run: npm ci
- name: Install dependencies for outsystems-wrapper
working-directory: ./packages/outsystems-wrapper
shell: bash
run: npm ci
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "Continuous Integrations"

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
validate-pr-title-conventional:
runs-on: ubuntu-latest
steps:
- name: Check PR title for conventional commits
uses: actions/github-script@v6
with:
github-token: ${{ github.token }}
script: |
const prTitle = context.payload.pull_request.title;

// Conventional commits regex: type(scope?): description
const conventionalRegex = /^(feat|fix|chore|docs|style|refactor|perf|test|ci)(\([a-z0-9\-]+\))?: .+/;

if (!conventionalRegex.test(prTitle)) {
core.setFailed(
`PR title "${prTitle}" is not in conventional commit format.\n` +
`Example: "feat(android): add new validation function"`
);
} else {
console.log("PR title follows conventional commit format ✅");
}

ci:
uses: ./.github/workflows/reusable_ci.yml
73 changes: 0 additions & 73 deletions .github/workflows/github_release.yml

This file was deleted.

49 changes: 0 additions & 49 deletions .github/workflows/o11_change_extensibility.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/o11_deploy.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/o11_release.yml

This file was deleted.

95 changes: 0 additions & 95 deletions .github/workflows/odc_release.yml

This file was deleted.

Loading