Skip to content

Commit ec0209e

Browse files
committed
fix ci
1 parent c08cb19 commit ec0209e

File tree

5 files changed

+8
-95
lines changed

5 files changed

+8
-95
lines changed

.github/workflows/check_dependencies.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,34 @@
1-
name: Launch CI jobs for a package or app
1+
name: CI
22
on:
3-
workflow_call:
4-
inputs:
5-
workspace:
6-
required: true
7-
type: string
3+
push:
4+
branches: ["master"]
5+
pull_request:
86
jobs:
97
lint:
108
runs-on: ubuntu-latest
119
steps:
1210
- uses: actions/checkout@v4
1311
- run: npm i
14-
- run: npm run lint -w ${{ inputs.workspace }}
12+
- run: npm run lint
1513

1614
typecheck:
1715
runs-on: ubuntu-latest
1816
steps:
1917
- uses: actions/checkout@v4
2018
- run: npm i
21-
- run: npm run typecheck -w ${{ inputs.workspace }}
19+
- run: npm run typecheck
2220

2321
test:
2422
runs-on: ubuntu-latest
2523
steps:
2624
- uses: actions/checkout@v4
2725
- run: npm i
28-
- run: npm run coverage -w ${{ inputs.workspace }}
26+
- run: npm run coverage
2927

3028
buildcheck:
3129
runs-on: ubuntu-latest
3230
steps:
3331
- uses: actions/checkout@v4
3432
- run: npm i
35-
- run: npm run build -w ${{ inputs.workspace }}
33+
- run: npm run build
3634

.github/workflows/ci_packages_cli.yml

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

.github/workflows/ci_packages_components.yml

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

.github/workflows/ci_root.yml

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

0 commit comments

Comments
 (0)