diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 08ff8365..8517e04a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,5 +31,11 @@ jobs: - name: Install Dependencies run: yarn install + - name: Can load prettier plugin properly + run: yarn prettier --version + + - name: Run linter + run: yarn lint + - name: Run Test run: yarn test diff --git a/package.json b/package.json index 7f2a3336..4b3c8dff 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,8 @@ }, "scripts": { "lint": "jest -c jest.eslint.config.js", - "test": "jest", - "prettier": "prettier --plugin=. --parser=melody" + "test": "jest -c jest.test.config.js", + "prettier": "prettier --plugin=./src/index.js --parser=melody" }, "dependencies": { "babel-types": "^6.26.0",