Skip to content

Fixed Typo on Homepage as well as Removed PicoCSS #13

Fixed Typo on Homepage as well as Removed PicoCSS

Fixed Typo on Homepage as well as Removed PicoCSS #13

Workflow file for this run

name: Fetch Commits and Store in Firestore
on:
push:
branches:
- main
jobs:
fetch-commits:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18' # Specify Node.js version
- name: Install dependencies
run: npm install
- name: Fetch Commits
env: # Define necessary environment variables here
FIREBASE_PRIVATE_KEY: ${{ secrets.FIREBASE_PRIVATE_KEY }}
FIREBASE_PROJECT_ID: ${{ secrets.FIREBASE_PROJECT_ID }}
FIREBASE_CLIENT_EMAIL: ${{ secrets.FIREBASE_CLIENT_EMAIL }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: node Scripts/fetchCommits.js # Run the script to fetch and store commits