From faf73e49d8920ad66984c6e6a26848de97b23001 Mon Sep 17 00:00:00 2001 From: mistval Date: Mon, 13 Mar 2023 20:09:41 -0400 Subject: [PATCH] test on different node versions --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fb74e4..4672d03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,12 +6,16 @@ jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + node-version: [12.x, 18.x, 20.x] + steps: - uses: actions/checkout@v2 - name: Use Node.js 18.x uses: actions/setup-node@v1 with: - node-version: 18.x + node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run lint - run: npm run coverage