Skip to content

Commit

Permalink
Merge branch 'develop' into 111-bug-theme-picker-tries-to-use-localst…
Browse files Browse the repository at this point in the history
…orage-on-server
  • Loading branch information
chrehall68 committed Oct 8, 2024
2 parents 5146497 + 9db73e2 commit 0b0f440
Show file tree
Hide file tree
Showing 4 changed files with 1,724 additions and 723 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": ["next/core-web-vitals", "next/typescript"]
"extends": ["next", "next/core-web-vitals", "next/typescript"]
}
12 changes: 9 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [opened, reopened, synchronize]

jobs:
lint:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -16,6 +16,12 @@ jobs:
with:
node-version: 20

- name: Lint test
- name: Build app
run: |
npm run lint
npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: next-build
path: .next/
Loading

0 comments on commit 0b0f440

Please sign in to comment.