From aeda46b0033dbc1c71bf50d48f765721c7e59ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=BCleyman=20Barman?= Date: Tue, 22 Feb 2022 08:32:26 +0300 Subject: [PATCH] Update build-check.yml (#68) --- .github/workflows/build-check.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml index baa5ecc..5d83bd6 100644 --- a/.github/workflows/build-check.yml +++ b/.github/workflows/build-check.yml @@ -10,11 +10,17 @@ on: jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + node-version: [10.x, 12.x] + steps: - uses: actions/checkout@v2 - - name: Use Node.js + + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: - node-version: '10.x' + node-version: ${{ matrix.node-version }} + - run: npm ci - run: npm install