Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions .github/workflows/check-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,9 @@ jobs:

- name: Check if any fixes were needed
run: |
git \
diff \
--color \
--exit-code
git diff \
--color \
--exit-code

check-style:
name: check-style (${{ matrix.module.path }})
Expand Down Expand Up @@ -201,10 +200,9 @@ jobs:

- name: Check formatting
run: |
git \
diff \
--color \
--exit-code
git diff \
--color \
--exit-code

check-config:
name: check-config (${{ matrix.module.path }})
Expand Down Expand Up @@ -236,7 +234,6 @@ jobs:

- name: Check whether any tidying was needed
run: |
git \
diff \
--color \
--exit-code
git diff \
--color \
--exit-code
12 changes: 5 additions & 7 deletions .github/workflows/check-npm-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,12 @@ jobs:

- name: Install npm dependencies
run: |
task \
npm:install-deps \
task npm:install-deps \
PROJECT_PATH="${{ matrix.project.path }}"

- name: Check package-lock.json
run: |
git \
diff \
--color \
--exit-code \
"${{ matrix.project.path }}/package-lock.json"
git diff \
--color \
--exit-code \
"${{ matrix.project.path }}/package-lock.json"
11 changes: 4 additions & 7 deletions .github/workflows/check-prettier-formatting-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,13 +268,10 @@ jobs:
version: 3.x

- name: Format with Prettier
run: |
task \
general:format-prettier
run: task general:format-prettier

- name: Check formatting
run: |
git \
diff \
--color \
--exit-code
git diff \
--color \
--exit-code
3 changes: 1 addition & 2 deletions .github/workflows/check-yaml-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,5 @@ jobs:
- name: Check YAML
continue-on-error: ${{ matrix.configuration.continue-on-error }}
run: |
task \
yaml:lint \
task yaml:lint \
YAMLLINT_FORMAT=${{ matrix.configuration.format }}
Loading