Skip to content

Bump vite from 3.2.5 to 3.2.7 #640

Bump vite from 3.2.5 to 3.2.7

Bump vite from 3.2.5 to 3.2.7 #640

Workflow file for this run

name: TS Action
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies on ACT
if: ${{ env.ACT }}
run: |
npm i -g yarn
sudo apt-get update
- name: Install dependencies on Ubuntu
run: yarn install --frozen-lockfile
- name: tsc
uses: icrawl/action-tsc@v1