From 7ee195be842a0f0e1d30fde7a8049ec866e2c702 Mon Sep 17 00:00:00 2001 From: Jeeva Ramachandran Date: Tue, 28 Nov 2023 18:41:03 +0530 Subject: [PATCH] update work flow --- .github/workflows/ci.yml | 60 ++++++++++++++++++++++++++++------------ 1 file changed, 43 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1dfc024c..894f8e2f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,24 +3,50 @@ name: CI on: pull_request: -jobs: - build: - name: Build Check - runs-on: ubuntu-latest - steps: - - name: "Checkout repository" - uses: actions/checkout@v4 +# jobs: +# build: +# name: Build Check +# runs-on: ubuntu-latest +# steps: +# - name: "Checkout repository" +# uses: actions/checkout@v4 - - name: "Setup node" - uses: actions/setup-node@v4 - with: - node-version: 20 +# - name: "Setup node" +# uses: actions/setup-node@v4 +# with: +# node-version: 20 + +# - name: "Setup yarn" +# run: corepack enable + +# - name: "Setup yarn" +# run: rm -rf yarn.lock + +# - name: "Install dependencies" +# run: yarn install - - name: "Setup yarn" - run: corepack enable +# - name: "Build" +# run: npm run re:build - - name: "Install dependencies" - run: yarn install - - name: "Build" - run: npm run re:build + +jobs: + build_test: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + strategy: + matrix: + node: [ 14, 16, 18 ] + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - name: npm ci, build and test + run: | + npm ci + npm run re:build