Skip to content

chore(deps): update dependency vite to v7.1.2 #2119

chore(deps): update dependency vite to v7.1.2

chore(deps): update dependency vite to v7.1.2 #2119

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npx prettier --check .
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: |
npx vitest run
npm run build
cd e2e/issue-189 && npm ci && npm run test && cd -
cd example && npm ci && npm run build && cd -
build:
runs-on: ubuntu-latest
needs:
- lint
- test
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run build
- uses: JS-DevTools/npm-publish@v3
id: publish
if: ${{ github.ref == 'refs/heads/main' }}
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./package.json
access: public
dry-run: false
strategy: upgrade