Skip to content

Initial commit from Create Next App #4

Initial commit from Create Next App

Initial commit from Create Next App #4

Workflow file for this run

name: CI - Canary
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 (canary)
run: |
npm install next@canary react@canary react-dom@canary
npm install
- name: Run tests
run: npm test
- name: Build
run: npm run build