* add simple CI run via github actions
--- /dev/null
+name: "Continuous Integration"
+
+on:
+ push:
+ pull_request:
+
+jobs:
+ build:
+
+ name: Build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '10.x'
+
+ - name: Install dependencies
+ run: yarn install
+
+ - name: Linting
+ run: yarn lint
+
+ - name: Build
+ run: yarn build
}
fetch_from_api('details', api_request_params, function (data) {
- window.scrollTo(0, 0)
+ window.scrollTo(0, 0);
if (data.error) {
errorResponse = data;
current_result = undefined;