diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58151fb..8041052 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,8 +38,11 @@ jobs: contents: read strategy: matrix: - node-version: [14, 16, 18] + node-version: [14, 16, 18, 20, 22] os: [macos-latest, ubuntu-latest] + exclude: + - os: macos-latest + node-version: 14 steps: - name: Check out repo uses: actions/checkout@v4 @@ -50,6 +53,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} + cache: 'npm' - name: Install dependencies run: npm i --ignore-scripts