Skip to content

Commit

Permalink
refactor: streamline STORE_PATH assignment in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
deveshsangwan committed Feb 23, 2025
1 parent 6c1e1c0 commit 498fd6a
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
STORE_PATH=$(pnpm store path --silent)
echo "STORE_PATH=$STORE_PATH" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v4
Expand All @@ -51,12 +52,4 @@ jobs:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
SECRET_KEY: ${{ secrets.SECRET_KEY }}
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}

# - name: Commit coverage badge
# run: |
# git config --local user.email "[email protected]"
# git config --local user.name "GitHub Action"
# git add README.md
# git commit -m "Update coverage badge" -a
# git push
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}

0 comments on commit 498fd6a

Please sign in to comment.