Skip to content

#570 Implement default env creation #107

#570 Implement default env creation

#570 Implement default env creation #107

Workflow file for this run

name: NextJS Build
on:
pull_request:
branches:
- main
paths:
- "agenta-web/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: npm ci
working-directory: agenta-web
- name: Run Build
run: npm run build
working-directory: agenta-web