Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: '12'
node-version: '24'
- name: Install dependencies
run: npm ci
- name: Build the project
Expand All @@ -26,12 +26,12 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload code coverage report to workflow as an artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v5
with:
name: istanbul-code-coverage.zip
path: coverage
- name: Upload code coverage report to codecov.io and comment in pull request
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v5
- name: Upload Sonar report to sonarcloud.io and comment in pull request
uses: sonarsource/sonarcloud-github-action@master
env:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: 12
node-version: 24
- name: Install dependencies
run: npm ci
- name: Build the project
run: npm run build:production
- name: Run tests and do code coverage check
run: npm run test:coverage
- name: Upload code coverage report to codecov.io
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v5
- name: Upload Sonar report to sonarcloud.io
uses: sonarsource/sonarcloud-github-action@master
env:
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Build documentation
run: npm run docs
- name: Publish documentation to github pages
uses: JamesIves/github-pages-deploy-action@3.7.1
uses: JamesIves/github-pages-deploy-action@v4.7.4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages-documentation
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,27 +35,27 @@
},
"devDependencies": {
"@adobe/eslint-config-editorxp": "^1.0.8",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.1",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"clean-webpack-plugin": "^3.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^12.0.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"clean-webpack-plugin": "^4.0.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.24.0",
"eslint": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-json": "^4.0.0",
"eslint-plugin-react": "^7.23.2",
"jest": "^26.6.3",
"jest": "^30.0.0",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"ts-jest": "^29.0.0",
"ts-loader": "^9.0.0",
"typedoc": "^0.22.0",
"typescript": "^4.2.4",
"typescript": "^5.0.0",
"webpack": "^5.34.0",
"webpack-cli": "^4.6.0"
"webpack-cli": "^6.0.0"
},
"files": [
"dist/**/*.{js,ts,map}",
Expand Down
Loading