From 273d89f67cd4f4afa1405bc817240770d580096b Mon Sep 17 00:00:00 2001 From: FUJISHIGE TEMMA Date: Fri, 10 Sep 2021 18:23:01 +0900 Subject: [PATCH] :green_heart:fix --- .github/workflows/{ci-frontend.yml => frontend.yml} | 6 +----- .github/workflows/golang.yaml | 2 +- webapp/frontend/package.json | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) rename .github/workflows/{ci-frontend.yml => frontend.yml} (87%) diff --git a/.github/workflows/ci-frontend.yml b/.github/workflows/frontend.yml similarity index 87% rename from .github/workflows/ci-frontend.yml rename to .github/workflows/frontend.yml index d1818b8f0..9ded15ae8 100644 --- a/.github/workflows/ci-frontend.yml +++ b/.github/workflows/frontend.yml @@ -1,4 +1,4 @@ -name: CI-frontend +name: Frontend on: push: @@ -25,9 +25,5 @@ jobs: check-latest: true - name: Install dependencies run: npm ci - - name: Run linter run: npm run lint - - - name: Run tests - run: npm run test diff --git a/.github/workflows/golang.yaml b/.github/workflows/golang.yaml index 257834c9a..e23281f40 100644 --- a/.github/workflows/golang.yaml +++ b/.github/workflows/golang.yaml @@ -1,4 +1,4 @@ -name: check golang implementation +name: Go on: push: diff --git a/webapp/frontend/package.json b/webapp/frontend/package.json index b5c2b4d01..9d916c806 100644 --- a/webapp/frontend/package.json +++ b/webapp/frontend/package.json @@ -11,7 +11,7 @@ "lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore", "lint": "npm run lint:js && npm run lint:style", "lint:fix": "npm run lint:js --fix && npm run lint:style --fix", - "test": "jest" + "test": "jest --passWithNoTests" }, "lint-staged": { "*.{js,vue}": "eslint",