Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sellnat77 authored Dec 24, 2019
2 parents 03ce5a8 + 5e8beeb commit a941a2a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Continuous_Delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Packages
run: npm install
- name: Build project
run: npm run-script build
run: npm run build
- name: Run Tests
run: export CI=true && npm run test -- --coverage
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Continuous_Integration_Backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Packages
run: npm install
- name: Build project
run: npm run-script build
run: npm run build
- name: Run Tests
run: export CI=true && npm run test -- --coverage
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Continuous_Integration_Frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- name: Install Packages
run: npm install
- name: Build project
run: npm run-script build
run: npm run build
- name: Run Tests
run: npm run-script test -- --coverage
run: npm run test -- --coverage
env:
MAPBOX_TOKEN: ${{ secrets.MAPBOX_TOKEN }}

0 comments on commit a941a2a

Please sign in to comment.