diff --git a/.github/workflows/deploy-v5.yaml b/.github/workflows/deploy-v5.yaml index fbea1b809..5f2fb2ea6 100644 --- a/.github/workflows/deploy-v5.yaml +++ b/.github/workflows/deploy-v5.yaml @@ -23,7 +23,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v6 with: - node-version: 22 + node-version: 24 - name: Cache dependencies uses: actions/cache@v5 @@ -33,8 +33,19 @@ jobs: restore-keys: | ${{ runner.os }}-node- + - name: Cache Quartz plugins + uses: actions/cache@v5 + with: + path: .quartz/plugins + key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }} + restore-keys: | + ${{ runner.os }}-plugins- + - run: npm ci + - name: Install Quartz plugins + run: npx quartz plugin install + - name: Check types and style run: npm run check