소스 검색

chore(prettier): apply prettier on files

jguer 3 년 전
부모
커밋
fc20bde10d
3개의 변경된 파일17개의 추가작업 그리고 8개의 파일을 삭제
  1. 7 1
      .github/ISSUE_TEMPLATE/bug_report.md
  2. 4 0
      .github/ISSUE_TEMPLATE/feature_request.md
  3. 6 7
      .github/workflows/testing.yml

+ 7 - 1
.github/ISSUE_TEMPLATE/bug_report.md

@@ -7,27 +7,33 @@ assignees: ""
 ---
 
 ### Affected Version
+
 <!-- Please ensure you are using the latest yay-git package
 Use `yay -V` to get installed version
 Example: `yay v8.1139.r0.g9ac4ab6 - libalpm v11.0.1` -->
 
 ### Describe the bug
+
 <!-- A clear and concise description of the bug. -->
 
 ### Reproduction Steps
+
 1.
 2.
 3.
 
 ### Expected behavior
+
 <!-- A clear and concise description of what you expected to happen. -->
 
 ### Output
-<!-- 
+
+<!--
 Include the FULL output of any relevant commands/configs
 The current yay config can be printed with `yay -Pg`
 Paste services are only needed for excessive output (>500 lines)
 -->
+
 ```sh
 
 ```

+ 4 - 0
.github/ISSUE_TEMPLATE/feature_request.md

@@ -7,13 +7,17 @@ assignees: ""
 ---
 
 ### Is your feature request related to a problem? Please describe.
+
 <!-- A clear and concise description of the problem, e.g. I'm always frustrated when ... -->
 
 ### Describe the solution you'd like
+
 <!-- A clear and concise description of what you want to happen. -->
 
 ### Describe alternatives you've considered
+
 <!-- A clear and concise description of any alternative solutions or features you've considered. -->
 
 ### Additional context
+
 <!-- Add any other context or screenshots about the feature request here. -->

+ 6 - 7
.github/workflows/testing.yml

@@ -31,12 +31,11 @@ jobs:
         run: make test
       - name: checkout pacman-git
         run: |
-                pacman -Sy --noconfirm sudo base-devel
-                git clone https://aur.archlinux.org/pacman-git
-                useradd github
-                chmod -R 777 pacman-git
-                echo 'github ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
-                su github -c 'cd pacman-git; yes | makepkg -si --nocheck'
+          pacman -Sy --noconfirm sudo base-devel
+          git clone https://aur.archlinux.org/pacman-git
+          useradd github
+          chmod -R 777 pacman-git
+          echo 'github ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
+          su github -c 'cd pacman-git; yes | makepkg -si --nocheck'
       - name: Run Build and Tests with pacman-git
         run: make test
-