From b2aed21ace75fccbb2fcce87b0a36d33faa2b0b4 Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Sat, 7 Oct 2023 15:46:48 +0800 Subject: [PATCH 1/2] GitHubCI: enable code-linter at push too And at any branch. This is so that contributors find issues with their code even before they create a PR. --- .github/workflows/code-linter.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-linter.yaml b/.github/workflows/code-linter.yaml index 5ac0940e..d6a7932e 100644 --- a/.github/workflows/code-linter.yaml +++ b/.github/workflows/code-linter.yaml @@ -1,7 +1,7 @@ name: Auto Check Lint on: - pull_request: - branches: ['main'] + - pull_request + - push jobs: Lint: From 6a4f0084667839b73b833ebb414323b16af0fc9b Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Sat, 7 Oct 2023 15:54:16 +0800 Subject: [PATCH 2/2] GitHubCI: translate workflow name to English For consistency. --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index d4570cda..2237ffda 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -1,4 +1,4 @@ -name: integracion continua con node.js +name: NodeJS Continuous Integration on: [push, pull_request]