Skip to content

Commit af55879

Browse files
authored
refactor: Change react-editor-js core mechanism (#177)
1 parent 2994cd3 commit af55879

33 files changed

+515
-57
lines changed

β€Ž.github/workflows/test.ymlβ€Ž

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: test
2+
3+
on: [push]
4+
5+
env:
6+
GITHUB_TOKEN: ${{secrets.GITHUB_ACCESS_TOKEN}}
7+
NPM_TOKEN: ${{secrets.NPM_ACCESS_TOKEN}}
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
if: "github.ref != 'refs/heads/master'"
13+
steps:
14+
- uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 0
17+
- uses: actions/setup-node@v2
18+
with:
19+
node-version: 14
20+
- uses: actions/cache@v1
21+
with:
22+
path: node_modules
23+
key: react-editor-js-${{ hashFiles('**/yarn.lock') }}
24+
- run: yarn
25+
- run: yarn test

β€Ž.pnp.cjsβ€Ž

Lines changed: 150 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
39.3 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
Β (0)