Skip to content

(fix): Improve the check for vite/ imports #65

(fix): Improve the check for vite/ imports

(fix): Improve the check for vite/ imports #65

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 6
strategy:
matrix:
node-version: [18.x] # 14
os: [ubuntu-latest] # mac
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
with:
version: 6.23.5
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
cache: "pnpm"
- name: Install
run: pnpm i
- name: Build
run: pnpm run build
- name: Test
run: |
cd test/basic
pnpm run test:ci
- name: Lint
run: pnpm run lint --if-present