mirror of
https://github.com/unjs/unplugin.git
synced 2026-01-18 16:03:09 +00:00
61 lines
1.2 KiB
YAML
61 lines
1.2 KiB
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: lts/*
|
|
- run: corepack enable
|
|
- run: npm i -g @antfu/ni
|
|
- run: nci
|
|
- run: nr lint
|
|
|
|
ci:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
node: [16, 18, 20, 22]
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set node version to ${{ matrix.node }}
|
|
uses: actions/setup-node@v4
|
|
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
|
|
if: ${{ matrix.node == 16 }}
|
|
env:
|
|
IS_WEBPACK_4: 'true'
|
|
|
|
- name: Test with Webpack 4
|
|
run: pnpm run test
|
|
if: ${{ matrix.node == 16 }}
|
|
env:
|
|
IS_WEBPACK_4: 'true'
|