Skip to content

(CI): Change Node.js version matrix to support 22, and drop 16 #1099

(CI): Change Node.js version matrix to support 22, and drop 16

(CI): Change Node.js version matrix to support 22, and drop 16 #1099

Workflow file for this run

name: Checks
on:
pull_request:
types: [opened, synchronize]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup and install deps
run: |
npm install
- name: Prettier check
run: |
npm run format:check
- name: Build
run: |
npm run build
- name: Test
run: |
npm run test