From befdc77e91f3ecbf2b2897e0bfb710d677e6a5eb Mon Sep 17 00:00:00 2001 From: Livio Date: Wed, 14 Dec 2022 10:03:41 +0100 Subject: [PATCH] use node 14 --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 13d42913..f93a6998 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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