build(deps): bump vite from 5.1.6 to 5.1.7 #51
Workflow file for this run
This file contains 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
# this is a github action that build the app to ensure that the build still work whe there is PR | |
name: AQ Build | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7.27.0 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm run build |