From c01f8fadc70728c4b09bc8d105838fbf64bdb74c Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Thu, 23 Jul 2020 15:04:58 +0900 Subject: [PATCH] Remove unnecessary scripts --- .github/workflows/ci.yml | 2 -- package.json | 6 +----- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d2e6fb..a13b1b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,12 +22,10 @@ jobs: with: python-version: '3.x' - run: npm ci - - run: npm run clean - run: npm run build - run: npm run format-check - run: npm run lint - run: npm run test - - run: npm run package - uses: actions/upload-artifact@v2 with: name: dist diff --git a/package.json b/package.json index 33b3d4e..f656857 100644 --- a/package.json +++ b/package.json @@ -5,17 +5,13 @@ "description": "Creates a pull request for changes to your repository in the actions workspace", "main": "lib/main.js", "scripts": { - "clean": "echo Temporarily kept for backwards compatibility", "build": "tsc && ncc build", "format": "prettier --write '**/*.ts'", "format-check": "prettier --check '**/*.ts'", "lint": "eslint src/**/*.ts", "test:unit": "jest unit", "test:int": "__test__/integration-tests.sh", - "test": "npm run test:unit && npm run test:int", - "pack-assets": "echo Temporarily kept for backwards compatibility", - "vendor-deps": "echo Temporarily kept for backwards compatibility", - "package": "echo Temporarily kept for backwards compatibility" + "test": "npm run test:unit && npm run test:int" }, "repository": { "type": "git",