Skip to content

Bump vite from 5.0.10 to 5.0.13 #42

Bump vite from 5.0.10 to 5.0.13

Bump vite from 5.0.10 to 5.0.13 #42

Workflow file for this run

name: Pipeline
on:
push:
branches: [main]
pull_request:
jobs:
plugin-build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20.x]
os:
- ubuntu-latest
- macos-latest
- windows-latest
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2.4.0
with:
version: 8
run_install: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
- run: pnpm i
- name: Build Vite plugin
run: pnpm build
integration-build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20.x]
os:
- ubuntu-latest
- macos-latest
- windows-latest
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2.4.0
with:
version: 8
run_install: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
- run: pnpm i
- name: Build integration
run: pnpm example:build