chore(deps): update dependency vite to v7.3.0 #4380
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: 'Checking files' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| node-version: | |
| type: string | |
| description: 'NodeJS version to use' | |
| required: false | |
| default: 'lts/*' | |
| pnpm-version: | |
| type: string | |
| description: 'pnpm version to use' | |
| required: false | |
| default: 'latest' | |
| env: | |
| NODE_VERSION: ${{ inputs.node-version || 'lts/*' }} | |
| PNPM_VERSION: ${{ inputs.pnpm-version || 'latest' }} | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup tooling | |
| uses: ./.github/actions/setup-tooling | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| pnpm-version: ${{ env.PNPM_VERSION }} | |
| - name: Validate resume | |
| run: pnpm run validate | |
| - name: Lint source files | |
| run: pnpm run lint |