Skip to content

Commit

Permalink
💚 Upgrade pnpm action setup
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Jul 5, 2024
1 parent 747e989 commit 7d44967
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-and-report-chats-usage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
STRIPE_PRO_CHATS_PRICE_ID: '${{ secrets.STRIPE_PRO_CHATS_PRICE_ID }}'
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
- run: pnpm i --frozen-lockfile
- run: pnpm turbo run checkAndReportChatsUsage
2 changes: 1 addition & 1 deletion .github/workflows/clean-database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
NEXT_PUBLIC_VIEWER_URL: 'http://localhost:3001'
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
- run: pnpm i --frozen-lockfile
- run: pnpm turbo run db:cleanDatabase
2 changes: 1 addition & 1 deletion .github/workflows/publish-lib-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
- run: pnpm i --frozen-lockfile
- run: pnpm turbo build --filter=typebot-js...
- name: Set NPM_TOKEN in config
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-typebot-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
- run: pnpm i --frozen-lockfile
- run: pnpm turbo build [email protected]/js...
- run: cd packages/embeds/js && pnpm publish --no-git-checks --access public
2 changes: 1 addition & 1 deletion .github/workflows/publish-typebot-nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
- run: pnpm i --frozen-lockfile
- run: pnpm turbo build [email protected]/nextjs...
- run: cd packages/embeds/nextjs && pnpm publish --no-git-checks --access public
2 changes: 1 addition & 1 deletion .github/workflows/publish-typebot-react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
- run: pnpm i --frozen-lockfile
- run: pnpm turbo build [email protected]/react...
- run: cd packages/embeds/react && pnpm publish --no-git-checks --access public

0 comments on commit 7d44967

Please sign in to comment.