From 32be483c236ddb8fb6d8d50badc2e3274276b5e2 Mon Sep 17 00:00:00 2001 From: bclayton-usgs <bclayton@usgs.gov> Date: Fri, 24 Jul 2020 16:15:42 -0600 Subject: [PATCH] update --- .gitlab-ci.yml | 11 +---------- package.json | 5 ++--- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6bfb5b4..ba4ecbf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -42,21 +42,12 @@ Build example: #### # Lint nshmp-template library #### -Lint nshmp-template: +Lint: stage: test extends: .node script: - npm run lint -#### -# Lint example application -#### -Lint example: - stage: test - extends: .node - script: - - npm run lint:example - # #### # # Run Jest tests on nshmp-template # #### diff --git a/package.json b/package.json index e3e3a52..e60aa32 100644 --- a/package.json +++ b/package.json @@ -15,11 +15,10 @@ "test:example": "ng test example", "lint": "ng lint", "lint:fix": "npm run lint -- --fix", - "lint:example": "ng lint example", "e2e": "ng e2e nshmp-template", "e2e:example": "ng e2e example", - "pre-commit": "pretty-quick --staged && npm run lint && npm run lint:example", - "pre-push": "npm run pre-commit && npm run build" + "pre-commit": "pretty-quick --staged && npm run lint", + "pre-push": "npm run build" }, "private": true, "dependencies": { -- GitLab