Skip to content

Bump vite from 3.2.4 to 3.2.7 #461

Bump vite from 3.2.4 to 3.2.7

Bump vite from 3.2.4 to 3.2.7 #461

Workflow file for this run

name: Server
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: app
strategy:
matrix:
node-version: [16.6.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup PNPM
run: npm install -g pnpm
- name: Setup NodeJS with PNPM caching
uses: actions/setup-node@v3
with:
node-version: "16.6.0"
cache: pnpm
- run: pnpm install
- run: npm run test
env:
CI: true