-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (69 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
name: CI
on:
push:
pull_request:
branches:
- main
merge_group:
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
working-directory:
- .
- templates/bun-npm-package
- templates/slidev
defaults:
run:
working-directory: ${{ matrix.working-directory }}
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Bun and Node.js
uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd # v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check
run: bun run check:ci
build:
runs-on: ubuntu-latest
strategy:
matrix:
working-directory:
- .
- templates/bun-npm-package
- templates/slidev
defaults:
run:
working-directory: ${{ matrix.working-directory }}
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Bun and Node.js
uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd # v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
test:
runs-on: ubuntu-latest
strategy:
matrix:
working-directory:
- .
- templates/bun-npm-package
- templates/slidev
defaults:
run:
working-directory: ${{ matrix.working-directory }}
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Bun and Node.js
uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd # v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Test
run: bun run test