Skip to content

Commit a824296

Browse files
committed
ci
1 parent 1488a2f commit a824296

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

.github/workflows/core.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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'

.github/workflows/sdk.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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'

0 commit comments

Comments
 (0)