-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (33 loc) · 787 Bytes
/
ci.yml
File metadata and controls
44 lines (33 loc) · 787 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
name: CI
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
env:
DO_NOT_TRACK: 1
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup CI
uses: ./.github/actions/ci-setup
- name: Check TypeScript
run: bun run check-typescript
- name: Check Example TypeScript
run: bun run check-typescript
working-directory: example
- name: Check Biome
run: bun run check-biome
- name: Check Syncpack
run: bun run check-syncpack
- name: Check CSpell
run: bun run check-cspell