Skip to content

Update to Vite 5.2.13 #122

Update to Vite 5.2.13

Update to Vite 5.2.13 #122

Workflow file for this run

name: Node CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
- run: corepack enable
- run: yarn install
- run: yarn test
- run: yarn build
- uses: peaceiris/actions-gh-pages@v3
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
force_orphan: true