Skip to content

feat(): add Next.js demo project with initial configuration and compo… #13

feat(): add Next.js demo project with initial configuration and compo…

feat(): add Next.js demo project with initial configuration and compo… #13

Workflow file for this run

name: "Build Check"
on:
pull_request:
workflow_dispatch:
push:
jobs:
build:
name: 'Build'
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org/'
cache: 'npm'
- name: Install
run: npm ci --ignore-scripts
- name: Check Build
run: npm run build