diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 485c607..9874ded 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,15 +15,15 @@ jobs: strategy: matrix: - node-version: '24.13.0' + node-version: ['24.13.0'] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: '24.13.0' + node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - run: npm test