From 351fc8028539175716d3f1a9cf3abf3798cee4ee Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Tue, 6 Jun 2023 20:48:59 +0200 Subject: [PATCH] ci: enable tests against node `16`, `18` and `20` --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3db5858e..077e08f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,12 +11,15 @@ on: jobs: ci: runs-on: ubuntu-latest + strategy: + matrix: + node: [16, 18, 20] steps: - uses: actions/checkout@v3 - run: corepack enable - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: ${{ matrix.node }} cache: "pnpm" - run: pnpm install - run: pnpm lint