diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index c8df9bd..b2e5f32 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -11,14 +11,7 @@ on: jobs: build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [20.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - name: Checkout @@ -26,13 +19,11 @@ jobs: - name: pnpm setup uses: pnpm/action-setup@v4 - with: - version: 9 - - name: Use Node.js ${{ matrix.node-version }} + name: Node.js setup uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 22 cache: 'pnpm' - name: install dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index adf5246..9d4be71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,13 +16,11 @@ jobs: - name: pnpm setup uses: pnpm/action-setup@v4 - with: - version: 9 - - name: Use Node.js 20 + name: Node.js setup uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: 'pnpm' - name: Build project