From cb91be81e33d729aec49e3bd80ce54350d2ddcc3 Mon Sep 17 00:00:00 2001 From: Shahrad Elahi Date: Sun, 21 Apr 2024 04:42:30 +0330 Subject: [PATCH 1/2] fix: `ci` workflow only on `canary` branch --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ee46e8..9fa584b 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,8 @@ name: CI on: push: + branches: + - canary pull_request: concurrency: From c1f890abe994226431833dd36d1609ba3ab52806 Mon Sep 17 00:00:00 2001 From: Shahrad Elahi Date: Sun, 21 Apr 2024 04:44:14 +0330 Subject: [PATCH 2/2] add node `16` for testing matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9fa584b..eb1a601 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18, 20] + node-version: [16, 18, 20] name: node ${{ matrix.node-version }} steps: - uses: actions/checkout@v4