From c7aa0b1f1296742694736c210a622b1040ed1d38 Mon Sep 17 00:00:00 2001 From: katbow Date: Tue, 24 Sep 2024 14:43:43 +0100 Subject: [PATCH] Try installing parcel watcher --- .github/workflows/main.yml | 8 +++++--- package-lock.json | 23 +++++++++++++++++++++++ package.json | 3 +++ src/components/layout/Footer.js | 2 +- 4 files changed, 32 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f5cdcb1..abc18c6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,15 +10,17 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v4 - name: Install Node.js uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' - - name: Install Project Dependencies run: npm ci - name: Build & deploy - run: npm run build --verbose --log-pages + run: | + git config user.name github-actions + git config user.email github-actions@github.com + npm run deploy diff --git a/package-lock.json b/package-lock.json index 94c7bc7..7abf9aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -36,6 +36,9 @@ "postcss": "^8.4.40", "postcss-reporter": "^7.1.0", "tailwindcss": "^3.4.7" + }, + "optionalDependencies": { + "@parcel/watcher-linux-x64-glibc": "^2.4.0" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -5196,6 +5199,26 @@ "url": "https://opencollective.com/parcel" } }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, "node_modules/@parcel/workers": { "version": "2.8.3", "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.8.3.tgz", diff --git a/package.json b/package.json index c105906..49eae9f 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,9 @@ "react-modal": "3.16.1", "@heroicons/react": "2.1.5" }, + "optionalDependencies": { + "@parcel/watcher-linux-x64-glibc": "^2.4.0" + }, "devDependencies": { "autoprefixer": "^10.4.20", "gatsby-plugin-postcss": "^6.13.1", diff --git a/src/components/layout/Footer.js b/src/components/layout/Footer.js index 92e76a5..b8fa902 100644 --- a/src/components/layout/Footer.js +++ b/src/components/layout/Footer.js @@ -1,5 +1,5 @@ import React from "react"; -import SvgLinkedIn from "../../svg/SvgLinkedIn"; +import SvgLinkedIn from "../../svg/SvgLinkedin"; import SvgGithub from "../../svg/SvgGithub"; const Footer = ({ className = "" }) => (