Skip to content

Support Node 18+ and test Node Matrix in CI #734

Support Node 18+ and test Node Matrix in CI

Support Node 18+ and test Node Matrix in CI #734

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 19, 20, 21]
steps:
- uses: actions/checkout@v3
- name: Setup Node v${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Test
run: yarn test