Skip to content

lint next app

lint next app #3

Workflow file for this run

name: build-app
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.13.1]
os: [ubuntu-latest]
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Setup Node env
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Build nextjs-app
run: yarn build