Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

refactor: lint next.config.js file #26

refactor: lint next.config.js file

refactor: lint next.config.js file #26

Workflow file for this run

name: Build Project for manual deployment
on:
push:
branches: ['main', 'dev']
workflow_dispatch:
permissions:
contents: read
id-token: write
concurrency:
group: 'build'
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: npm
- name: Restore Cache
uses: actions/cache@v3
with:
path: .next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
- name: Install dependencies
run: npm ci
- name: Build with Next.js
run: npx --no-install next build
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: project-build-${{ github.sha }}
path: ./out