Skip to content

Updated dependencies for nuxt, vue and vant packages #15

Updated dependencies for nuxt, vue and vant packages

Updated dependencies for nuxt, vue and vant packages #15

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [16, 18]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: latest
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install
run: pnpm i --frozen-lockfile
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint:test
- name: Build playground
run: pnpm dev:build