Skip to content

chore(deps): update dependency @types/node to v22.10.0 #10945

chore(deps): update dependency @types/node to v22.10.0

chore(deps): update dependency @types/node to v22.10.0 #10945

Workflow file for this run

name: Build & Deploy
on:
push:
schedule:
- cron: "0 20 * * *"
jobs:
build:
name: Build
if: github.ref != 'refs/heads/develop'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@v4
with:
node-version: 19
- run: |
yarn install --immutable
yarn build
env:
GOODREADS_KEY: ${{ secrets.GOODREADS_KEY }}
deploy:
name: Deploy Gatsby Site
if: github.ref == 'refs/heads/develop'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@v4
with:
node-version: 19
- run: |
yarn install --immutable
yarn build
yarn deploy
env:
GOODREADS_KEY: ${{ secrets.GOODREADS_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}