generated from ita-social-projects/DevTemplate
-
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.
Browse files
Browse the repository at this point in the history
…/github.com/ita-social-projects/Forum into #269-ImplementFunctionalityOfProfileDetails
- Loading branch information
Showing
15 changed files
with
4,679 additions
and
2,446 deletions.
There are no files selected for viewing
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
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,29 @@ | ||
name: Testing FE | ||
|
||
on: pull_request | ||
|
||
env: | ||
REACT_APP_BASE_API_URL: http://localhost:8000 | ||
|
||
jobs: | ||
build_and_test: | ||
name: Testing # job name (unique id) | ||
runs-on: ubuntu-latest # on which machine to run | ||
steps: # list of steps | ||
- name: Install NodeJS | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Code Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Dependencies | ||
run: | | ||
cd FrontEnd | ||
npm install | ||
- name: Code Testing | ||
run: | | ||
cd FrontEnd | ||
npm test |
Oops, something went wrong.