Bump vite from 7.1.3 to 7.1.5 in /examples/frameworks/vue #489
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: Main | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4.1.0 | |
| with: | |
| version: 9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf | |
| # dest: # optional, default is ~/setup-pnpm | |
| # run_install: # optional, default is null | |
| # package_json_file: # optional, default is package.json | |
| # standalone: # optional, default is false | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Create .env file from secrets | |
| run: | | |
| echo "MAPBOX_API_KEY=${{ secrets.MAPBOX_API_KEY }}" >> .env | |
| echo "GEOBASE_PROJECT_REF=${{ secrets.GEOBASE_PROJECT_REF }}" >> .env | |
| echo "GEOBASE_API_KEY=${{ secrets.GEOBASE_API_KEY }}" >> .env | |
| echo "TOKEN_GITHUB=${{ secrets.TOKEN_GITHUB }}" >> .env | |
| - name: Build | |
| run: pnpm build | |
| - name: Test | |
| run: pnpm test |