]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Run build under Node 14
authorJoe Workman <joe@workmanmail.com>
Tue, 24 Aug 2021 21:39:57 +0000 (14:39 -0700)
committerGitHub <noreply@github.com>
Tue, 24 Aug 2021 21:39:57 +0000 (14:39 -0700)
node 16 is not currently funcational.

.github/workflows/main.yml

index 9f7424220fef2b3673df318cf2fdaee708ab7c0b..255e769a10bd4e9395408c2aa3af0908bd30fb0d 100644 (file)
@@ -6,7 +6,9 @@ jobs:
   build_latest_browserstack:
     name: Node latest with browserstack
     runs-on: ubuntu-latest
-    container: node:latest
+    strategy:
+      matrix:
+        node-version: [14.x] # latest (16) not functional
     steps:
       - uses: actions/checkout@v1
       - name: install system dependencies
@@ -24,7 +26,9 @@ jobs:
   build_latest:
     name: Node latest
     runs-on: ubuntu-latest
-    container: node:current
+    strategy:
+      matrix:
+        node-version: [14.x] # latest (16) not functional
     steps:
       - uses: actions/checkout@v1
       - name: install system dependencies