Skip to content

Bump npm from 10.8.3 to 10.9.0 #967

Bump npm from 10.8.3 to 10.9.0

Bump npm from 10.8.3 to 10.9.0 #967

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
NEXT_TELEMETRY_DISABLED: 1
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Setup Environment
run: cp .env.example .env.local
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build