diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6f70904..1305703 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,10 +16,10 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22.17.1 - name: Install dependencies - run: npm clean-install + run: npm install - name: Run build run: npm run build diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c747636..6175d3a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,10 +17,10 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22.17.1 - name: Install dependencies - run: npm clean-install + run: npm install - name: Run ESLint in strict mode if: github.ref == 'refs/heads/master' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b99402c..10b6c5a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,10 +17,10 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22.17.1 - name: Install dependencies - run: npm clean-install + run: npm install - name: Run tests with coverage if: github.ref == 'refs/heads/master'