Skip to content

Commit ca04902

Browse files
committed
actions
1 parent da106a5 commit ca04902

4 files changed

Lines changed: 5 additions & 87 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install dependencies
3434
run: pnpm install
3535
- name: Build with VitePress
36-
run: pnpm build
36+
run: pnpm --filter docs build
3737
- name: Upload artifact
3838
uses: actions/upload-pages-artifact@v3
3939
with:

.github/workflows/test.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ name: Coverage
22

33
on:
44
push:
5-
branches: [master]
6-
pull_request:
7-
branches: [master]
5+
tags:
6+
- 'flowcraft*'
87

98
jobs:
109
test:
@@ -21,9 +20,9 @@ jobs:
2120
- name: Install dependencies
2221
run: pnpm install
2322
- name: Run tests and create coverage report
24-
run: pnpm coverage
23+
run: pnpm --filter flowcraft test:coverage
2524
- name: Upload coverage to Codecov
2625
uses: codecov/codecov-action@v5
2726
with:
2827
token: ${{ secrets.CODECOV_TOKEN }}
29-
files: ./packages/flowcraft/coverage/lcov.info
28+
files: ./packages/core/coverage/lcov.info

examples/advanced/complex-patterns/src/main.ts

Lines changed: 0 additions & 80 deletions
This file was deleted.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"packageManager": "pnpm@10.20.0",
66
"scripts": {
77
"lint": "biome check packages examples",
8-
"coverage": "pnpm --filter flowcraft test:coverage",
98
"changeset": "changeset",
109
"release": "turbo build && changeset publish"
1110
},

0 commit comments

Comments
 (0)