Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
kimachinskiy committed Nov 16, 2023
2 parents 02ddad7 + c12c12b commit 6c09af0
Show file tree
Hide file tree
Showing 140 changed files with 13,462 additions and 3,731 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Install NodeJS
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'

- name: Code Checkout
uses: actions/checkout@v3
Expand Down
File renamed without changes.
29 changes: 29 additions & 0 deletions .github/workflows/tests_fe.yml
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
5 changes: 1 addition & 4 deletions FrontEnd/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@
"ignoreTemplateLiterals": true
}
],
"linebreak-style": [
"error",
"unix"
],
"linebreak-style": "off",
"quotes": [
"error",
"single"
Expand Down
Loading

0 comments on commit 6c09af0

Please sign in to comment.