Skip to content

Commit 511d355

Browse files
committed
v0.1: CD Integration
1 parent 2366de2 commit 511d355

1 file changed

Lines changed: 28 additions & 29 deletions

File tree

.github/workflows/ci.yml

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,43 @@
11
name: CI
22

33
on:
4-
push:
5-
branches: ["**"]
6-
pull_request:
7-
branches: ["**"]
4+
push:
5+
branches: ['**']
6+
pull_request:
7+
branches: ['**']
88

99
permissions:
10-
contents: read
10+
contents: read
1111

1212
jobs:
13-
build:
14-
name: Lint, Format Check, Typecheck, Build
15-
runs-on: ubuntu-latest
13+
build:
14+
name: Lint, Format Check, Typecheck, Build
15+
runs-on: ubuntu-latest
1616

17-
steps:
18-
- name: Checkout
19-
uses: actions/checkout@v4
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
2020

21-
- name: Setup Node.js
22-
uses: actions/setup-node@v4
23-
with:
24-
node-version: 20
25-
cache: npm
21+
- name: Setup Node.js
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: 20
25+
cache: npm
2626

27-
- name: Install dependencies
28-
run: npm ci
27+
- name: Install dependencies
28+
run: npm ci
2929

30-
- name: ESLint
31-
run: npm run lint
30+
- name: ESLint
31+
run: npm run lint
3232

33-
- name: Format Check (Prettier)
34-
run: npx --yes prettier@^3.3.0 --check .
33+
- name: Format Check (Prettier)
34+
run: npx --yes prettier@^3.3.0 --check .
3535

36-
- name: Typecheck
37-
run: npm run check-types
36+
- name: Typecheck
37+
run: npm run check-types
3838

39-
- name: Build
40-
run: npm run compile
41-
42-
- name: Production Package Build
43-
run: npm run package
39+
- name: Build
40+
run: npm run compile
4441

42+
- name: Production Package Build
43+
run: npm run package

0 commit comments

Comments
 (0)