Skip to content

chore: remove redundant package.json scripts, use vp directly in CI #555

chore: remove redundant package.json scripts, use vp directly in CI

chore: remove redundant package.json scripts, use vp directly in CI #555

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
permissions: {}
jobs:
ci:
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: taiki-e/checkout-action@83ed61bfbe2b8abbb3c66e8b65b1335484c70009 # v1.4.1
- uses: voidzero-dev/setup-vp@b5d848f5a62488f3d3d920f8aa6ac318a60c5f07 # v1
with:
cache: true
- run: npx playwright install chromium
- name: Check
run: vp check
- name: Test
run: vp test run
- name: Build
run: vp run build