Skip to content

Commit

Permalink
New version 4.0.0-beta.15 Read more https://github.com/xdan/jodit/blo…
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed May 8, 2023
1 parent 08a1491 commit c40498d
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
run: |
make test-all
- name: Screenshot test all
run: |
make screenshots-all
- name: Publish
run: |
npm publish ./build --access public
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/screenshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3 #Setup Node
with:
node-version: '16.15.0'

- name: Run screenshot Tests
run: |
npm ci
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- uses: actions/setup-node@v3 #Setup Node
with:
node-version: '16.15.0'

- name: Run Karma Tests
run: |
npm ci
Expand Down
12 changes: 8 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,6 @@ test-all:
make test-only-run build=es2021 uglify=true
make test-only-run build=es2015 uglify=true
make test-only-run build=es5 uglify=true
make screenshots-test build=es5
make screenshots-test build=es2015
make screenshots-test build=es2021

.PHONY: lint
lint:
Expand Down Expand Up @@ -139,6 +136,13 @@ test-only-run:
coverage:
npx --yes type-coverage ./src --detail --ignore-files 'build/**' --ignore-files 'test/**' --ignore-files 'examples/**'

.PHONY: screenshots-all
screenshots-all:
make screenshots-build-image
make screenshots-test build=es5
make screenshots-test build=es2015
make screenshots-test build=es2021


.PHONY: screenshots-test
screenshots-test:
Expand All @@ -163,7 +167,7 @@ newversion-git:
git add --all && git commit -m "New version $(version) Read more https://github.com/xdan/jodit/blob/main/CHANGELOG.md "
git tag $(version)
git push --tags origin HEAD:main
echo "New version $(version) Actions: https://github.com/xdan/jodit/actions/"
@echo "New version $(version) Actions: https://github.com/xdan/jodit/actions/"

.PHONY: jodit
jodit:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jodit",
"version": "4.0.0-beta.14",
"version": "4.0.0-beta.15",
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
"main": "build/jodit.min.js",
"types": "./types/index.d.ts",
Expand Down

0 comments on commit c40498d

Please sign in to comment.