initial commut

This commit is contained in:
Денис Строков
2023-02-12 23:28:55 +03:00
commit 7de84530b8
17 changed files with 2424 additions and 0 deletions

34
.github/workflows/release-package.yml vendored Normal file
View File

@ -0,0 +1,34 @@
name: wc-wysiwyg package
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm run tsc
- run: npm run babel-minify
- run: npm run sass
publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm publish --public
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}