File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments