Skip to content

Commit

Permalink
Merge branch 'master' into scrollbar_fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
vaishnavi-3969 authored Oct 18, 2023
2 parents fcdf9f2 + af92e21 commit 7124b4b
Showing 1 changed file with 33 additions and 0 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

0 comments on commit 7124b4b

Please sign in to comment.