We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 680c84b + 0dbcfb6 commit 8c8f138Copy full SHA for 8c8f138
.github/CODEOWNERS
@@ -0,0 +1 @@
1
+* @commencis/wfe-approvers
.github/workflows/ci.yaml
@@ -0,0 +1,27 @@
+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