From 510654f52ec2446eef041d919ef03c0fb65e4d59 Mon Sep 17 00:00:00 2001 From: Dimitar Nanov Date: Wed, 11 Oct 2023 22:27:08 +0300 Subject: [PATCH] Update CI.yml --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index cfb0892..79f9267 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -2,16 +2,16 @@ name: CI on: push: - branches: [ main ] + branches: [ main, master ] pull_request: - branches: [ main ] + branches: [ main, master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: - node: [ 14, 16, 18 ] + node: [ 14, 16, 18, 19, 20 ] name: Node.js ${{ matrix.node }} steps: - uses: actions/checkout@v3