-
-
Notifications
You must be signed in to change notification settings - Fork 9
48 lines (40 loc) · 1002 Bytes
/
Copy pathdevvit-app.yml
File metadata and controls
48 lines (40 loc) · 1002 Bytes
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
name: devvit-app
on:
push:
branches: [main]
paths:
- 'devvit-app/**'
- 'pnpm-lock.yaml'
- 'pnpm-workspace.yaml'
- '.github/workflows/devvit-app.yml'
pull_request:
paths:
- 'devvit-app/**'
- 'pnpm-lock.yaml'
- 'pnpm-workspace.yaml'
- '.github/workflows/devvit-app.yml'
concurrency:
group: devvit-app-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
defaults:
run:
working-directory: devvit-app
steps:
- uses: actions/checkout@v7
- uses: jdx/mise-action@v4
with:
version: 2026.5.15
install: true
cache: true
- name: Install deps
working-directory: .
run: pnpm install --frozen-lockfile --filter amputatorbot-devvit-app...
- name: Biome
run: pnpm exec biome ci .
- name: Type check (tsgo)
run: pnpm exec tsgo --noEmit
- name: Test
run: pnpm exec vitest run