-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (48 loc) · 1.16 KB
/
ci.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
name: CI
on:
schedule:
- cron: '0 0 * * 6'
push:
branches: ['main']
pull_request:
# The branches below must be a subset of the branches above
branches: ['main']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Biome
uses: biomejs/setup-biome@v2
- name: Run Biome
run: biome ci .
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies, typecheck, and test
run: |
bun i
bun typecheck
bun test
run:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Dry run
run: ./bin/dotsync
- name: Do sync
run: ./bin/dotsync --do
- name: Import defaults
run: ./bin/dotsync --defaults-action import --do
- name: Export defaults
run: ./bin/dotsync --do