Skip to content

Commit

Permalink
use node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunnerLivio committed Dec 14, 2022
1 parent 7e6a493 commit befdc77
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [14.x]

steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Use Node.js 18.x
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 18.x
node-version: 14.x
- name: npm install, build, and test
run: |
yarn add gatsby --global
yarn --frozen-lockfile
yarn run build:prod
npm i -g gatsby
npm ci
npm run build:prod
env:
CI: true

0 comments on commit befdc77

Please sign in to comment.