From a9ae4904c022ab7a4b40198848f3d81deee9b627 Mon Sep 17 00:00:00 2001 From: Nikolay Vitkov Date: Thu, 2 Oct 2025 15:23:06 +0200 Subject: [PATCH 1/2] chore: update names --- .github/workflows/presubmit.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/presubmit.yml b/.github/workflows/presubmit.yml index b7faaf61..72432bd6 100644 --- a/.github/workflows/presubmit.yml +++ b/.github/workflows/presubmit.yml @@ -10,6 +10,7 @@ on: jobs: check-format: + name: "[Required] Check correct format" runs-on: ubuntu-latest steps: @@ -22,7 +23,7 @@ jobs: uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 with: cache: npm - node-version-file: '.nvmrc' + node-version-file: ".nvmrc" - name: Install dependencies run: npm ci @@ -31,6 +32,7 @@ jobs: run: npm run check-format check-docs: + name: "[Required] Check docs updated" runs-on: ubuntu-latest steps: @@ -43,7 +45,7 @@ jobs: uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 with: cache: npm - node-version-file: '.nvmrc' + node-version-file: ".nvmrc" - name: Install dependencies run: npm ci From 276b66575277a1883a774ea0213bdea374c889a7 Mon Sep 17 00:00:00 2001 From: Nikolay Vitkov Date: Thu, 2 Oct 2025 15:23:46 +0200 Subject: [PATCH 2/2] fix --- .github/workflows/presubmit.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/presubmit.yml b/.github/workflows/presubmit.yml index 72432bd6..d67c2eb4 100644 --- a/.github/workflows/presubmit.yml +++ b/.github/workflows/presubmit.yml @@ -10,7 +10,7 @@ on: jobs: check-format: - name: "[Required] Check correct format" + name: '[Required] Check correct format' runs-on: ubuntu-latest steps: @@ -23,7 +23,7 @@ jobs: uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 with: cache: npm - node-version-file: ".nvmrc" + node-version-file: '.nvmrc' - name: Install dependencies run: npm ci @@ -32,7 +32,7 @@ jobs: run: npm run check-format check-docs: - name: "[Required] Check docs updated" + name: '[Required] Check docs updated' runs-on: ubuntu-latest steps: @@ -45,7 +45,7 @@ jobs: uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 with: cache: npm - node-version-file: ".nvmrc" + node-version-file: '.nvmrc' - name: Install dependencies run: npm ci