Skip to content

Commit

Permalink
fix(ci): 🔧 setup before release
Browse files Browse the repository at this point in the history
  • Loading branch information
AkashRajpurohit committed May 14, 2023
1 parent 07fdeb4 commit 35fd785
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,43 @@ jobs:
runs-on: ubuntu-latest
needs: [test]
steps:
- name: Checkout 🧳
uses: actions/checkout@v3

- name: Install Node.js 🔥
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install pnpm 👀
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 7
run_install: false

- name: Get pnpm store directory 🏪
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache 💰
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies ⏬
run: pnpm install

- name: Build ⏰
run: pnpm build
env:
NODE_ENV: production

- name: Release 🚀
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 35fd785

Please sign in to comment.