Skip to content

New version 4.0.0-beta.75 Read more https://github.com/xdan/jodit/blo… #92

New version 4.0.0-beta.75 Read more https://github.com/xdan/jodit/blo…

New version 4.0.0-beta.75 Read more https://github.com/xdan/jodit/blo… #92

Workflow file for this run

name: Publish Package to npmjs
on:
push:
tags: ["*"]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3 #Setup Node
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: |
npm ci
- name: Lint
run: |
make lint
- name: Build
run: |
make build-all
- name: Test all
run: |
make test-all uglify=true fat=true
# - name: Screenshot test all
# run: |
# make screenshots-all
- name: Publish
run: |
NPM_TOKEN=${{ secrets.NPM_TOKEN }} npm publish ./build --access public --tag beta