Bump @astrojs/tailwind from 5.1.0 to 5.1.5 #238
Workflow file for this run
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: Deploy to Firebase Hosting on PR | |
| on: pull_request | |
| jobs: | |
| build_and_preview: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Instll Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '18.x' | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - uses: actions/checkout@v3 | |
| - run: pnpm install && npm run build | |
| - uses: actions/checkout@v3 | |
| - run: pnpm install && pnpm run build | |
| - uses: FirebaseExtended/action-hosting-deploy@v0 | |
| with: | |
| repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
| firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_LABLNET_86A04 }}' | |
| projectId: lablnet-86a04 | |
| env: | |
| FIREBASE_CLI_EXPERIMENTS: webframeworks | |