diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d815ccc..4282071 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: node-version: [18] - pnpm-version: [8] + pnpm-version: [8.3.1] steps: - name: Checkout Repo uses: actions/checkout@v3 @@ -36,7 +36,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install Dependencies - run: pnpm install --lockfile-only + run: echo $NODE_ENV && pnpm install --frozen-lockfile - name: Create Release Pull Request uses: changesets/action@v1 diff --git a/package.json b/package.json index 1ca73ea..1b2aa64 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,9 @@ "start": "pnpm run -F frontend start", "lint": "pnpm run -F '*' lint", "lint:fix": "pnpm run -F '*' lint:fix", - "lint:format": "pnpm run -F '*' lint:format" + "lint:format": "pnpm run -F '*' lint:format", + "changeset:version": "changeset version", + "changeset:publish": "changeset publish" }, "devDependencies": { "@changesets/changelog-github": "^0.4.8",