Skip to content

Commit

Permalink
update work flow
Browse files Browse the repository at this point in the history
  • Loading branch information
JeevaRamu0104 committed Nov 28, 2023
1 parent b675c61 commit 7ee195b
Showing 1 changed file with 43 additions and 17 deletions.
60 changes: 43 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7ee195b

Please sign in to comment.