File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed
Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Core check
2+ on :
3+ pull_request :
4+
5+ jobs :
6+ lint :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ - name : Run ESLint check
11+ uses : ./.github/actions/lint
12+ with :
13+ package-name : ' @editorjs/core'
14+
15+ build :
16+ runs-on : ubuntu-latest
17+ steps :
18+ - uses : actions/checkout@v4
19+ - name : Build the package
20+ uses : ./.github/actions/build
21+ with :
22+ package-name : ' @editorjs/core'
Original file line number Diff line number Diff line change 1+ name : SDK check
2+ on :
3+ pull_request :
4+
5+ jobs :
6+ lint :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ - name : Run ESLint check
11+ uses : ./.github/actions/lint
12+ with :
13+ package-name : ' @editorjs/sdk'
14+
15+ build :
16+ runs-on : ubuntu-latest
17+ steps :
18+ - uses : actions/checkout@v4
19+ - name : Build the package
20+ uses : ./.github/actions/build
21+ with :
22+ package-name : ' @editorjs/sdk'
You can’t perform that action at this time.
0 commit comments