Skip to content

Commit 5c578af

Browse files
committed
ci: build and lint CI
Signed-off-by: Matt Gleich <git@mattglei.ch>
1 parent 0bbe566 commit 5c578af

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: build
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
vite:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- run: pnpm install
13+
- run: pnpm run build

.github/workflows/lint.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: lint
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
eslint:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- run: pnpm install
13+
- run: pnpm run lint

0 commit comments

Comments
 (0)