build(deps-dev): bump vite from 4.3.9 to 4.4.8 #159
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: Deploy to GitHub Pages | |
on: [push] | |
jobs: | |
build_site: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# If you're using pnpm, add this step then change the commands and cache key below to use `pnpm` | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
# - name: build | |
# env: | |
# BASE_PATH: '/thuchanh' | |
# run: | | |
# pnpm run build | |
# touch build/.nojekyll | |
# TODO: Check back on github action | |
# - name: Deploy | |
# uses: JamesIves/github-pages-deploy-action@v4 | |
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}} | |
# with: | |
# branch: gh-pages | |
# folder: 'build/' | |
# name: Build | |
# on: | |
# push: | |
# branches-ignore: | |
# - gh-pages | |
# workflow_dispatch: | |
# pull_request: | |
# jobs: | |
# build: | |
# name: Build and Deploy | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/setup-node@v2 | |
# with: | |
# node-version: '16' | |
# - name: Checkout Repository | |
# uses: actions/checkout@v3 | |
# with: | |
# fetch-depth: '0' | |
# persist-credentials: false | |
# submodules: 'recursive' | |
# - name: Setup pnpm | |
# uses: pnpm/[email protected] | |
# with: | |
# version: latest | |
# run_install: false | |
# - name: Get pnpm store directory | |
# id: pnpm-cache | |
# shell: bash | |
# run: | | |
# echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
# - uses: actions/cache@v3 | |
# name: Setup pnpm cache | |
# with: | |
# path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
# restore-keys: | | |
# ${{ runner.os }}-pnpm-store- | |
# - name: Install | |
# run: pnpm install | |
# # - name: Build and Analysis | |
# # run: yarn build && yarn analysis | |
# - name: Build | |
# run: | | |
# pnpm build | |
# touch build/.nojekyll | |
# - name: Deploy | |
# uses: JamesIves/github-pages-deploy-action@v4 | |
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}} | |
# with: | |
# branch: gh-pages | |
# folder: dist | |
# # lint: | |
# # name: Lint | |
# # runs-on: ubuntu-latest | |
# # steps: | |
# # - uses: actions/setup-node@v2 | |
# # with: | |
# # node-version: '14' | |
# # - name: Checkout Repository | |
# # uses: actions/checkout@v2 | |
# # with: | |
# # fetch-depth: '0' | |
# # submodules: 'recursive' | |
# # - name: Cache yarn | |
# # uses: c-hive/gha-yarn-cache@v2 | |
# # - name: Install | |
# # run: yarn install | |
# # - name: Lint | |
# # run: yarn lintci |