diff --git a/.github/workflows/ltpr.yml b/.github/workflows/ltpr.yml index eb5db4b..926e7e2 100644 --- a/.github/workflows/ltpr.yml +++ b/.github/workflows/ltpr.yml @@ -17,38 +17,35 @@ jobs: with: fetch-depth: 0 - - name: Install pnpm - uses: pnpm/action-setup@v4 - - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: "lts/*" registry-url: 'https://registry.npmjs.org' - cache: "pnpm" + cache: "yarn" - name: Install dependencies - run: pnpm install --frozen-lockfile + run: yarn install --frozen-lockfile - name: Run linter - run: pnpm lint + run: yarn lint - name: Run prepare - run: pnpm dev:prepare + run: yarn dev:prepare - name: Run tests - run: pnpm test + run: yarn test - name: Run prepack - run: pnpm prepack + run: yarn prepack - name: Publish to npm shell: bash - run: pnpm publish --access public --no-git-checks + run: yarn publish --access public --no-git-checks env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Run github release run: npx --yes changelogithub@latest env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}