diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 59957ae..3b835f4 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -8,13 +8,13 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Install node20 runtime + - name: Install node22 runtime uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Install dependencies - run: rm -rf node_modules && yarn install --frozen-lockfile + run: rm -rf node_modules && yarn install - name: Run ESLint run: yarn lint diff --git a/.github/workflows/validateWithLinks.yml b/.github/workflows/validateWithLinks.yml index f72e83f..b82127a 100644 --- a/.github/workflows/validateWithLinks.yml +++ b/.github/workflows/validateWithLinks.yml @@ -9,13 +9,13 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Install node20 runtime + - name: Install node22 runtime uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Install dependencies - run: rm -rf node_modules && yarn install --frozen-lockfile + run: rm -rf node_modules && yarn install - name: Run ESLint run: yarn lint