Skip to content

fix build and force node 14 (graphQL version issue) #47

fix build and force node 14 (graphQL version issue)

fix build and force node 14 (graphQL version issue) #47

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build to GH Pages
on:
push:
branches: [ master ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
GATSBY_CONTACT_API: https://zhiva-contact-form.azurewebsites.net/api/ContactForm
GATSBY_CAPTCHA_SITE_KEY: 6LcAWxQeAAAAAOUX1yvrmLTSSvFk-iZL1q-m7GF9
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages # The branch the action should deploy to.
folder: public # The folder the action should deploy.