chore(deps): update dependency vite to v5.2.13 #14
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
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/*' | |
bun-version: | |
type: string | |
description: 'Bun version to use' | |
required: false | |
default: 'latest' | |
env: | |
NODE_VERSION: ${{ inputs.node-version || 'lts/*' }} | |
BUN_VERSION: ${{ inputs.bun-version || 'latest' }} | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Setup tooling | |
uses: ./.github/actions/setup-tooling | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
bun-version: ${{ env.BUN_VERSION }} | |
- name: Validate resume | |
run: bun run validate | |
- name: Lint source files | |
run: bun run lint |