diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5860acf..7a20929 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,18 +20,19 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - node: [16, 18, 20] + node: [16, 18, 20, 22] steps: - name: Clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} + cache: npm - name: Install npm dependencies run: npm ci