Skip to content

Commit

Permalink
Merge branch 'master' into endpoints_branch
Browse files Browse the repository at this point in the history
  • Loading branch information
christikaes authored May 3, 2020
2 parents fbdef97 + 53d3c6f commit c7ad693
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
- run: npm run bootstrap
- name: Lint javscript code
run: npm run lint
- name: Archive eslint report
uses: actions/upload-artifact@v1
with:
name: eslint-report
path: .test/eslint-report.html
cypress-run:
runs-on: ubuntu-16.04
steps:
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,6 @@ sketch
/cypress/videos
.DS_Store

!docker/*
!docker/*

.test/
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"test": "start-server-and-test start \"3000|8080\" cy:open",
"test-run": "start-server-and-test start \"3000|8080\" cy:run",
"bootstrap": "lerna clean -y && lerna bootstrap --hoist",
"lint": "npx eslint . --ext .js --ignore-pattern node_modules/ --ignore-pattern build/ --ignore-pattern cypress/"
"lint": "npx eslint . --ext .js --ignore-pattern node_modules/ --ignore-pattern build/ --ignore-pattern cypress/ -o .test/eslint-report.html -f html ",
"lint-fix": "npx eslint . --fix --ext .js --ignore-pattern node_modules/ --ignore-pattern build --ignore-pattern cypress/"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit c7ad693

Please sign in to comment.