Skip to content

Commit e36c6f5

Browse files
github action
1 parent 8da5e76 commit e36c6f5

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/CD.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3
11-
- name: Run prettier
12-
run: |
13-
npm install prettier
14-
npx prettier . --check
1511
- name: Semantic Release
1612
uses: cycjimmy/semantic-release-action@v3
1713
id: semantic

.github/workflows/prepare_pr.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Prepare PR
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- next
7+
8+
jobs:
9+
prepare:
10+
uses: Geode-solutions/actions/.github/workflows/web/prepare-pr.yml@master
11+
secrets: inherit

.prettierrc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
2-
"trailingComma": "es5",
3-
"tabWidth": 2,
42
"semi": false,
5-
"singleQuote": true
3+
"vueIndentScriptAndStyle": true
64
}

0 commit comments

Comments
 (0)