Skip to content

Commit 34fe03a

Browse files
🐛 fix: Fix ci
1 parent d8473af commit 34fe03a

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@ name: Release CI
22
on:
33
push:
44
branches:
5-
- master
6-
- alpha
7-
- beta
8-
- rc
5+
- main
96

107
jobs:
118
test:
@@ -27,8 +24,8 @@ jobs:
2724
- name: Install deps
2825
run: pnpm install
2926

30-
- name: lint
31-
run: pnpm run lint && pnpm run doctor
27+
- name: CI
28+
run: pnpm run ci
3229

3330
- name: Test
3431
run: pnpm run test

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- name: Install deps
2222
run: pnpm install
2323

24+
- name: CI
25+
run: pnpm run ci
26+
2427
- name: Test and coverage
2528
run: pnpm run test:coverage
2629

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"dev": "next dev -p 3400",
1212
"lint": "eslint \"{src,api,docs}/**/*.{js,jsx,ts,tsx}\" --fix",
1313
"lint:md": "remark . --quiet --frail --output",
14-
"lint:prettier": "prettier --check \"api/**/*\" --end-of-line auto",
1514
"lint:style": "stylelint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
1615
"prepare": "husky install",
1716
"prepublishOnly": "npm run doctor && npm run build",

0 commit comments

Comments
 (0)