From 0b3479ac01a171873b4a951339e2a0f62faa3642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Preu=C3=9F?= Date: Tue, 12 Sep 2023 11:22:43 +0200 Subject: [PATCH] Change ci command --- .github/workflows/package.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index ac8f1fa..e60d59f 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -16,7 +16,7 @@ jobs: registry-url: 'https://registry.npmjs.org' scope: '@bitinflow' - run: yarn install - - run: yarn build + - run: yarn ci - run: yarn npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index 01777ea..5a38e7a 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "dev": "nuxi dev playground", "dev:build": "nuxi build playground", "dev:prepare": "nuxt-module-build --stub && nuxi prepare playground", - "build": "npm run lint && npm run test && npm run prepack", + "ci": "npm run lint && npm run dev:prepare && npm run test && npm run prepack", "release": "npm run lint && npm run test && npm run prepack && changelogen --release && git push --follow-tags", "push": "npm publish --access public", "lint": "eslint .",