Skip to content

Commit

Permalink
Merge pull request #6 from MaximeDan/aka-front-journey
Browse files Browse the repository at this point in the history
Aka front journey
  • Loading branch information
alexandre-kakal authored May 22, 2024
2 parents 212c3eb + de6828d commit bd640d9
Show file tree
Hide file tree
Showing 38 changed files with 1,892 additions and 202 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"prettier"
],
"rules": {
"react/no-unescaped-entities": "off"
"react/no-unescaped-entities": "off",
"react-hooks/exhaustive-deps": "off"
}
}
27 changes: 27 additions & 0 deletions .github/workflows/push-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Check build when pushing
run-name: ${{ github.actor }} is pushing
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Notify Discord on failure
if: failure()
uses: containrrr/shoutrrr-action@v1
with:
url: ${{ secrets.NOTIFICATION_URL }}
title: "Build failed for ${{ github.actor }}"
message: |
Build failed
Commit message: ${{ github.event.head_commit.message }}
Commit SHA: ${{ github.sha }}
11 changes: 10 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "via.assets.so",
},
],
},
};

export default nextConfig;
Loading

0 comments on commit bd640d9

Please sign in to comment.