Skip to content

Commit fa76626

Browse files
ci: separate workflow for make ts-check
1 parent f3041bb commit fa76626

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/check-ts.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
concurrency:
2+
group: "${{ github.workflow }}-${{ github.ref }}-check-ts"
3+
cancel-in-progress: true
4+
5+
on:
6+
workflow_call:
7+
workflow_dispatch:
8+
9+
env:
10+
RELEASE: 1
11+
12+
jobs:
13+
check:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v6
18+
19+
- uses: oven-sh/setup-bun@v2
20+
with:
21+
bun-version: latest
22+
23+
- name: download web files
24+
uses: ./.github/actions/make/ts/browser
25+
with:
26+
gh-token: ${{ secrets.GITHUB_TOKEN }}
27+
artifact-generation: ${{ vars.ARTIFACT_GENERATION }}
28+
29+
- name: download native files
30+
uses: ./.github/actions/make/ts/native
31+
with:
32+
gh-token: ${{ secrets.GITHUB_TOKEN }}
33+
artifact-generation: ${{ vars.ARTIFACT_GENERATION }}
34+
35+
- name: lint
36+
run: make ts-check

0 commit comments

Comments
 (0)