Create page.tsx Surah 84 Al-Inshiqaq The Splitting Asunder #485
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Install Dependencies | |
on: push | |
jobs: | |
install-deps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- run: pnpm install react-dnd react-dnd-html5-backend react-dnd-touch-backend | |
- run: git config --global user.name "GitHub Actions" | |
- run: git config --global user.email "[email protected]" | |
- run: git add package.json pnpm-lock.yaml | |
- run: git commit -m "Add drag-and-drop dependencies" || echo "No changes to commit" | |
- run: git push |