We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da5e76 commit e36c6f5Copy full SHA for e36c6f5
.github/workflows/CD.yml
@@ -8,10 +8,6 @@ jobs:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v3
11
- - name: Run prettier
12
- run: |
13
- npm install prettier
14
- npx prettier . --check
15
- name: Semantic Release
16
uses: cycjimmy/semantic-release-action@v3
17
id: semantic
.github/workflows/prepare_pr.yml
@@ -0,0 +1,11 @@
1
+name: Prepare PR
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - next
7
+jobs:
+ prepare:
+ uses: Geode-solutions/actions/.github/workflows/web/prepare-pr.yml@master
+ secrets: inherit
.prettierrc
@@ -1,6 +1,4 @@
{
- "trailingComma": "es5",
- "tabWidth": 2,
"semi": false,
- "singleQuote": true
+ "vueIndentScriptAndStyle": true
}
0 commit comments