diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98b3426..c89e251 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,14 +10,14 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x, 16.x, 17.x] + node-version: [14.x, 16.x, 18.x, 20.x, 21.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: - node-version: '12.x' + node-version: ${{ matrix.node-version }} - name: Install dependencies run: npm ci - run: npm test