Skip to content

Initial commit from Create Next App #8

Initial commit from Create Next App

Initial commit from Create Next App #8

Workflow file for this run

name: CI - Stable
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies (stable)
run: |
npm install next@latest react@latest react-dom@latest --legacy-peer-deps
npm install
- name: Run tests
run: npm test
- name: Build
run: npm run build