Skip to content

Commit

Permalink
Merge pull request #4 from christianvuerings/upgrade-nextjs-13.3.2
Browse files Browse the repository at this point in the history
Upgrade to 13.3.2
  • Loading branch information
christianvuerings committed Apr 30, 2023
2 parents 9fc33fc + 20006a6 commit a29affd
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 108 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
node-version-file: '.nvmrc'
- run: npm install
- run: npm run build
env:
NODE_OPTIONS: --max-old-space-size=8192

prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
node-version-file: '.nvmrc'
- run: npm install
- run: npx prettier --check .
env:
NODE_OPTIONS: --max-old-space-size=8192
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.16.0

0 comments on commit a29affd

Please sign in to comment.