Skip to content

Commit

Permalink
New version 4.0.0-beta.39 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 714e625 commit 2ec2d31
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Publish Package to npmjs

on:
push:
branches: [main]
tags: ["*"]

jobs:
Expand All @@ -15,7 +14,7 @@ jobs:
- uses: actions/setup-node@v3 #Setup Node
with:
node-version-file: '.nvmrc'
registry-url: https://registry.npmjs.org/
cache: 'npm'

- name: Install dependencies
run: |
Expand All @@ -31,14 +30,15 @@ jobs:
- name: Test all
run: |
make test-all
# make test-all
echo Without test ...

# - name: Screenshot test all
# run: |
# make screenshots-all

- name: Publish
run: |
npm publish ./build --access public
NPM_TOKEN=${{ secrets.NPM_TOKEN }} npm publish ./build --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 1 addition & 0 deletions .github/workflows/screenshot.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-file: '.nvmrc'
cache: 'npm'

- name: Run screenshot Tests
run: |
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-file: '.nvmrc'
cache: 'npm'

- name: Run Karma Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}
//registry.npmjs.org/:_authToken=${NPM_TOKEN}
registry=https://registry.npmjs.org/
always-auth=true
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.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jodit",
"version": "4.0.0-beta.38",
"version": "4.0.0-beta.39",
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
"main": "build/jodit.min.js",
"types": "./types/index.d.ts",
Expand Down Expand Up @@ -50,10 +50,10 @@
"autobind-decorator": "^2.4.0",
"classlist-polyfill": "^1.2.0",
"core-js": "^3.30.2",
"es6-promise": "^4.2.8",
"tslib": "^2.5.0"
"es6-promise": "^4.2.8"
},
"devDependencies": {
"tslib": "^2.5.0",
"@types/ace": "^0.0.48",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
Expand Down

0 comments on commit 2ec2d31

Please sign in to comment.