Skip to content

Commit

Permalink
Merge branch 'main' into github-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJuanAndOnly99 authored Dec 20, 2024
2 parents 18a828e + 1e7cc24 commit d4f7cf4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches:
- main
schedule:
- cron: "0 */3 * * *"
- cron: '0 */3 * * *'

jobs:
build:
Expand All @@ -22,11 +22,11 @@ jobs:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: "${{ matrix.node-version }}"
node-version: '${{ matrix.node-version }}'

- name: Build
run: |
npm install
npm run build
env:
PASSPHRASE: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_PASSPHRASE }}
PASSPHRASE: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_PASSPHRASE }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"lint": "eslint ./src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "npm run lint -- --fix",
"get-mock-events": "node ./scripts/setMock.js",
"setup-environment": "gpg --quiet --batch --yes --decrypt --passphrase=$PASSPHRASE --output calendar-service-account.json calendar-service-account.json.gpg",
"setup-environment": "gpg --quiet --batch --yes --decrypt --passphrase=${GOOGLE_SERVICE_ACCOUNT_PASSPHRASE} --output calendar-service-account.json calendar-service-account.json.gpg",
"download-ics": "npx mkdirp dist && curl -o dist/basic.ics https://calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics",
"get-events": "node ./scripts/googleapi2events.mjs",
"getEvents": "npm run get-events",
Expand Down

0 comments on commit d4f7cf4

Please sign in to comment.