-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from Shubh942/master4
Added .yml file for webapp to run test on making the pr.
- Loading branch information
Showing
16 changed files
with
3,247 additions
and
80 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Run NPM Tests on Pull Request | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test-npm: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout target branch | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.base.ref }} | ||
|
||
- name: Fetch pull request changes | ||
run: | | ||
git fetch origin +refs/pull/${{ github.event.pull_request.number }}/merge:pr | ||
git checkout pr | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18" | ||
|
||
- name: Install npm dependencies | ||
run: | | ||
cd webapp | ||
npm install | ||
- name: Run npm tests with coverage | ||
run: | | ||
cd webapp | ||
npx vitest --coverage.enabled true |
Oops, something went wrong.