Skip to content

Commit

Permalink
Adding the code
Browse files Browse the repository at this point in the history
  • Loading branch information
vikas-falconx committed Apr 14, 2024
1 parent 291a1b9 commit 4f65993
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: ["14.x","16.x", "18.x"]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- run: npm install
- run: npm build --if-present

0 comments on commit 4f65993

Please sign in to comment.