Skip to content

Commit 8c8f138

Browse files
authored
Merge pull request #1 from Commencis/feature/ci
chore: add validation pipeline configuration for pull requests
2 parents 680c84b + 0dbcfb6 commit 8c8f138

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @commencis/wfe-approvers

.github/workflows/ci.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
pull_request: ~
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
ci:
12+
name: Lint & Build
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 10
15+
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Setup
21+
uses: commencis/js-toolkit/.github/actions/setup@main
22+
23+
- name: Review
24+
run: pnpm run ci:review
25+
26+
- name: Build
27+
run: pnpm run build

0 commit comments

Comments
 (0)