Skip to content

Commit 2fb7f93

Browse files
committed
run on CI
1 parent 908dd0c commit 2fb7f93

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request: {}
8+
9+
jobs:
10+
lint:
11+
name: Codecov
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
16+
- uses: actions/setup-node@v4
17+
- uses: pnpm/action-setup@v4
18+
with:
19+
version: 9.15.4
20+
21+
- name: install dependencies
22+
run: pnpm install
23+
24+
- name: build
25+
run: pnpm build
26+
env:
27+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)