Skip to content

chore(deps): bump actions/setup-node from 6.3.0 to 6.4.0 #917

chore(deps): bump actions/setup-node from 6.3.0 to 6.4.0

chore(deps): bump actions/setup-node from 6.3.0 to 6.4.0 #917

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [develop]
workflow_dispatch:
permissions:
contents: read
deployments: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
# Check out history for "Last Modified" markers in Nextra
fetch-depth: 0
- uses: pnpm/action-setup@078e9d416474b29c0c387560859308974f7e9c53 # v6.0.1
- name: Use Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '25'
cache: pnpm
- name: Restore cache
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: |
.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Type Check
run: pnpm run check:types
- name: Build
run: pnpm run build
- name: Deploy to Cloudflare Pages
if: github.ref == 'refs/heads/develop' && github.repository == 'connectbot/connectbot.github.io' && github.event_name == 'push'
uses: cloudflare/wrangler-action@da0e0dfe58b7a431659754fdf3f186c529afbe65 # v3.14.1
with:
apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy ./out --project-name=connectbot-website
gitHubToken: ${{ secrets.GITHUB_TOKEN }}