aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/PULL_REQUEST_TEMPLATE/add_recipe.md2
-rw-r--r--.github/workflows/builds.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE/add_recipe.md b/.github/PULL_REQUEST_TEMPLATE/add_recipe.md
index 3756c29..1b2640b 100644
--- a/.github/PULL_REQUEST_TEMPLATE/add_recipe.md
+++ b/.github/PULL_REQUEST_TEMPLATE/add_recipe.md
@@ -22,7 +22,7 @@ Service ID: [What ID does your recipe use?]
22<!-- Please also accept the following checkboxes --> 22<!-- Please also accept the following checkboxes -->
23 23
24- [ ] I am the original creator of this package 24- [ ] I am the original creator of this package
25- [ ] I have run the `pnpm lint && pnpm reformat-files && pnpm package` and verified that there are no validation errors reported for this package 25- [ ] I have run the `pnpm lint:fix && pnpm reformat-files && pnpm package` and verified that there are no validation errors reported for this package
26- [ ] My recipe has been tested to work inside Ferdium 26- [ ] My recipe has been tested to work inside Ferdium
27 27
28<!-- Here you can write anything else you want to tell us. --> 28<!-- Here you can write anything else you want to tell us. -->
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 9a3533e..0fd768e 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -38,6 +38,6 @@ jobs:
38 run: pnpm i 38 run: pnpm i
39 - name: Check code style and formatting 39 - name: Check code style and formatting
40 if: ${{ github.event_name == 'pull_request' }} 40 if: ${{ github.event_name == 'pull_request' }}
41 run: pnpm lint && pnpm reformat-files 41 run: pnpm lint:fix && pnpm reformat-files
42 - name: Package recipes 42 - name: Package recipes
43 run: pnpm package 43 run: pnpm package