Skip to content

Commit

Permalink
Conflict resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenish-Dhanani committed Oct 18, 2023
2 parents f3dc624 + fc1e904 commit d2a4737
Show file tree
Hide file tree
Showing 5 changed files with 4,959 additions and 10,377 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/Build_Test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build and Test


on:

push:
branches: [ master ]
pull_request:
branches: [ master ]


jobs:
build_test:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 15.x, 16.x]


steps:

- 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 build --if-present
npm test
Loading

0 comments on commit d2a4737

Please sign in to comment.