diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index ffed5b7..705233b 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -9,17 +9,17 @@ jobs: strategy: fail-fast: false matrix: - node-version: [20.x, 22.x] + node-version: [22.x, 24.x] steps: - - uses: actions/checkout@v6 - - uses: actions/setup-node@v6 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: node -v - - run: npm -v - - run: npm ci - - run: npm test + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: node -v + - run: npm -v + - run: npm ci + - run: npm test mac-and-windows-test: name: Test on node latest and ${{ matrix.os }} @@ -29,12 +29,12 @@ jobs: matrix: os: [windows-latest, macos-latest] steps: - - uses: actions/checkout@v6 - - uses: actions/setup-node@v6 - with: - node-version: 22.x - cache: 'npm' - - run: node -v - - run: npm -v - - run: npm ci - - run: npm test + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 + with: + node-version: 24.x + cache: 'npm' + - run: node -v + - run: npm -v + - run: npm ci + - run: npm test