chore(deps-dev): bump vite from 5.4.9 to 5.4.10 (#135) #537
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: build | |
on: [push, pull_request] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: npm ci --prefer-offline | |
- name: Lint commit message | |
run: npx commitlint --from=HEAD~1 | |
- name: Run ESLint | |
run: npm run lint | |
- name: Type check | |
run: npm run lint:tsc | |
- name: Build | |
run: npm run build -- --base /${{ github.event.repository.name }}/ | |
env: | |
VITE_GOOGLE_ANALYTICS_ID: ${{ vars.GOOGLE_ANALYTICS_ID }} | |
- name: Deploy | |
if: github.ref_name == 'master' | |
uses: remarkablemark/gitploy-action@v1 | |
with: | |
directory: dist | |
- name: Upload artifacts | |
if: github.ref_name == 'master' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifact | |
path: dist |