From eb6c789f0b990e3b9355d0f7f0e22cb866cde295 Mon Sep 17 00:00:00 2001 From: Erik Moura Date: Tue, 3 Jun 2025 07:39:13 -0400 Subject: [PATCH 1/2] ci: update branch for `test` workflow --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d3be4aa193..508966460ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,10 +3,10 @@ name: CI on: pull_request: branches: - - master + - main push: branches: - - master + - main permissions: {} From aa977c59ab661869c5fbaf5ee9e2240df9fd2696 Mon Sep 17 00:00:00 2001 From: Erik Moura Date: Tue, 3 Jun 2025 07:44:26 -0400 Subject: [PATCH 2/2] use Node 14 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 508966460ac..d1b11d18666 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: '12.x' + node-version: '14.x' - name: Install dependencies run: 'npm ci' - name: Run tests