chore: update CI to run Node 22 in place of Node 12 #358
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, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- '14' | |
- '16' | |
- '18' | |
- '20' | |
- '22' | |
platform: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
name: '${{matrix.platform}} / Node.js ${{ matrix.node }}' | |
runs-on: ${{matrix.platform}} | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: next-9 | |
standalone: true | |
- name: pnpm install | |
run: pnpm install | |
- name: Compile | |
run: pnpm -r run prepublishOnly | |
- name: run tests | |
run: pnpm -r --no-bail test |