-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (53 loc) · 1.49 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Check
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup env
uses: ./.github/actions/setup-env
- name: Run linter
run: pnpm run lint
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup env
uses: ./.github/actions/setup-env
- name: Run typecheck
run: pnpm run typecheck
test:
name: Test
runs-on: ubuntu-latest
permissions:
issues: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup env & build
uses: ./.github/actions/setup-env
with:
build: true
- name: Run action
id: action
uses: ./
with:
stale-label: stale
days-before-close: 7
dry-run: true
- name: Check output
run: |
echo 'closed-issues=${{ steps.action.outputs.closed-issues }}'
${{ startsWith(steps.action.outputs.closed-issues, '[') }} || { echo '::error::Expected "closed-issues" output to start with ['; exit 1; }
${{ endsWith(steps.action.outputs.closed-issues, ']') }} || { echo '::error::Expected "closed-issues" output to end with ]'; exit 1; }