ci: setup pnpm with standalone version #1445
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Setup | |
run: npm i -g @antfu/ni | |
- name: Install | |
run: nci | |
- name: Lint | |
run: nr lint | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
node: [14, 16, 18, 20] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
standalone: true | |
- name: Set node version to ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: Install | |
run: pnpm i | |
- name: Downgrade deps for Node 14 | |
run: pnpm i rollup@3 [email protected] | |
if: ${{ matrix.node == 14 }} | |
- name: Build | |
run: pnpm run build | |
- name: Test | |
run: pnpm run test | |
- name: Install Webpack 4 | |
run: pnpm i webpack@4 | |
if: ${{ matrix.node == 14 || matrix.node == 16 }} | |
env: | |
IS_WEBPACK_4: 'true' | |
- name: Test with Webpack 4 | |
run: pnpm run test | |
if: ${{ matrix.node == 14 || matrix.node == 16 }} | |
env: | |
IS_WEBPACK_4: 'true' | |
SKIP_RSPACK: 'true' |