Skip to content

build(deps): bump next from 14.1.0 to 15.5.10 in /examples/nextjs #104

build(deps): bump next from 14.1.0 to 15.5.10 in /examples/nextjs

build(deps): bump next from 14.1.0 to 15.5.10 in /examples/nextjs #104

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: 'Build & Test'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack (PNPM from packageManager)
run: |
corepack enable
corepack prepare pnpm@8.15.8 --activate
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
HUSKY: 0
- name: Typecheck
run: pnpm -w typecheck
- name: Build
run: pnpm -w build
- name: Test with Coverage
run: pnpm -w test:coverage --reporter verbose
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: simonguo/react-code-view
files: ./packages/core/coverage/lcov.info,./packages/react/coverage/lcov.info,./packages/unplugin/coverage/lcov.info
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false
verbose: true