Optimize command execution in lint-test-build workflow for improved efficiency

This commit is contained in:
Luis Eduardo
2025-02-03 02:44:56 +00:00
parent 54fa7514db
commit 277784d4ff

View File

@@ -32,11 +32,11 @@ jobs:
with:
platform: ${{ matrix.vars.platform }}
push: never
runCmd: |
npm install
go mod download
task fixperms
task check-deps
task lint-only
task test-only
runCmd: >
npm install && \
go mod download && \
task fixperms && \
task check-deps && \
task lint-only && \
task test-only && \
task build