chore(deps): update voidzero-dev/setup-vp action to v1.8.0 (#170) #42
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: Copilot Setup Steps | |
| # This workflow defines the setup steps that GitHub Copilot agents will use | |
| # to prepare the development environment for the vibe-dashboard project. | |
| # It preinstalls tools and dependencies needed for Node.js and TypeScript development. | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: [opened, synchronize] | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| permissions: {} | |
| jobs: | |
| copilot-setup-steps: | |
| name: Setup Development Environment for Copilot | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| steps: | |
| - uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2 | |
| - name: Setup vp | |
| uses: voidzero-dev/setup-vp@4f5aa3e38c781f1b01e78fb9255527cee8a6efa6 # v1.8.0 | |
| with: | |
| cache: true | |
| - run: npm i @ast-grep/cli -g | |
| - name: Check | |
| run: vp check | |
| - name: Build project | |
| run: vp run build |