diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index ed9743e..1525cb1 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -14,7 +14,6 @@ jobs: node-version: 20 - run: npm ci - - run: npm run deps - uses: JS-DevTools/npm-publish@v2.1.0 with: token: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21664a4..f02e2ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,7 @@ jobs: - uses: actions/checkout@v3.3.0 - uses: actions/setup-node@v3.6.0 with: - node-version: 120 + node-version: 20 cache: "npm" - run: npm ci - - run: npm run deps - - run: npm run test + - run: npm t diff --git a/package.json b/package.json index 78948ce..f529418 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,6 @@ }, "scripts": { "grunt": "grunt", - "deps": "npm i && cd app && npm i && cd ..", "test": "node node_modules/grunt-cli/bin/grunt clean mochaTest", "types": "npx -p typescript tsc app/updater.js --declaration --allowJs --emitDeclarationOnly --outFile ./index.d.ts" },