Skip to content

Commit

Permalink
Merge pull request #7 from pilotso11/update-next-version2
Browse files Browse the repository at this point in the history
Update next.js version and other packages.
  • Loading branch information
pilotso11 authored Oct 19, 2024
2 parents 9138575 + 19682c8 commit 358673e
Show file tree
Hide file tree
Showing 6 changed files with 2,439 additions and 13,213 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,22 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
pnpm-version: [9.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ matrix.pnpm-version }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run test --if-present
- run: npm run lint --if-present
- run: npm run build --if-present
cache: 'pnpm'
- run: pnpm install
- run: pnpm run test
- run: pnpm run lint
- run: pnpm run build
2 changes: 1 addition & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const nextConfig = {
unoptimized: true,
},
output: 'export',
staticPageGenerationTimeout: 300,
}

module.exports = nextConfig
Loading

0 comments on commit 358673e

Please sign in to comment.