Skip to content

Commit

Permalink
Try installing parcel watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
katbow committed Sep 24, 2024
1 parent 7ae57fb commit 23733ad
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
npm run deploy
23 changes: 23 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/Footer.js
Original file line number Diff line number Diff line change
@@ -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 = "" }) => (
Expand Down

0 comments on commit 23733ad

Please sign in to comment.