mirror of
https://github.com/unjs/unplugin.git
synced 2026-01-18 16:03:09 +00:00
42 lines
730 B
YAML
42 lines
730 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
node: [14, 16]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set node version to ${{ matrix.node }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
- run: corepack enable
|
|
|
|
- name: Install
|
|
run: pnpm i
|
|
|
|
- name: Build
|
|
run: pnpm run build
|
|
|
|
- name: Test
|
|
run: pnpm run test
|
|
|
|
- name: Install Webpack 4
|
|
run: pnpm i webpack@4
|
|
|
|
- name: Test with Webpack 4
|
|
run: pnpm run test
|