]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Revert "chore: update CI to not run node 16. Not currently functioning"
authorJoe Workman <joe@workmanmail.com>
Tue, 24 Aug 2021 21:38:57 +0000 (14:38 -0700)
committerJoe Workman <joe@workmanmail.com>
Tue, 24 Aug 2021 21:42:18 +0000 (14:42 -0700)
This reverts commit 640afb49041e350fa986307053870bc44fa66188.

.github/workflows/main.yml

index c5e16052bff04164d3491517031975099595b926..9f7424220fef2b3673df318cf2fdaee708ab7c0b 100644 (file)
@@ -4,11 +4,9 @@ on: [push, pull_request]
 
 jobs:
   build_latest_browserstack:
-    name: Node 14 with browserstack
+    name: Node latest with browserstack
     runs-on: ubuntu-latest
-    strategy:
-      matrix:
-        node-version: [14.x] # latest (16) not functional
+    container: node:latest
     steps:
       - uses: actions/checkout@v1
       - name: install system dependencies
@@ -24,11 +22,9 @@ jobs:
         run: yarn test:javascript:browserstack
 
   build_latest:
-    name: Node 14
+    name: Node latest
     runs-on: ubuntu-latest
-    strategy:
-      matrix:
-        node-version: [14.x] # latest (16) not functional
+    container: node:current
     steps:
       - uses: actions/checkout@v1
       - name: install system dependencies
@@ -44,7 +40,7 @@ jobs:
     strategy:
       matrix:
         platform: [ubuntu-latest, macos-latest, windows-latest]
-        node: [ '12', '10']
+        node: [ '12', '10', '8' ]
     name: Node ${{ matrix.node }} (${{ matrix.platform }})
     runs-on: ${{ matrix.platform }}
     steps: