Add nextjs frontend tests #3

Merged
LAX18 merged 1 commits from npease-add-nextjs-workflow into main 2024-02-16 18:46:33 -10:00
+26
View File
@@ -0,0 +1,26 @@
name: Next.Js Build Validation
on:
pull_request:
push:
branches:
- "main"
jobs:
nextjs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 21.6.2
- name: Install dependencies
run: npm install frontend-next/
- name: Buide
run: npm --prefix frontend-next/ run build