Skip to content

chore(deps): bump the dependencies group with 2 updates #1031

chore(deps): bump the dependencies group with 2 updates

chore(deps): bump the dependencies group with 2 updates #1031

Workflow file for this run

name: Run Build
on:
push:
branches:
- main
workflow_dispatch:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # pin@v4
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Run Build
run: NEXT_TELEMETRY_DISABLED=1 npm run build