Skip to content

Commit 7ce9f8a

Browse files
committed
WIP
1 parent 222203c commit 7ce9f8a

File tree

5 files changed

+31
-0
lines changed

5 files changed

+31
-0
lines changed

.github/workflows/app-build.yml

Whitespace-only changes.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "CI / Library JS Feature"
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
7+
check-lint:
8+
name: "Check / Lint"
9+
runs-on: ubuntu-latest
10+
container:
11+
image: ghcr.io/matrixai/github-runner
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Run linting
15+
run: |
16+
nix develop .#ci --command bash -c $'
17+
npm run lint
18+
'
19+
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: "CI / Library JS Staging"
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: "CI / Library JS Tag"
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:

.github/workflows/library-native-build.yml

Whitespace-only changes.

0 commit comments

Comments
 (0)