]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
update github actions
authorJoe Workman <joe@workmanmail.com>
Fri, 18 Aug 2023 02:50:53 +0000 (19:50 -0700)
committerJoe Workman <joe@workmanmail.com>
Fri, 18 Aug 2023 02:50:53 +0000 (19:50 -0700)
.github/workflows/main.yml

index 28f2bed580bf05814fc75b637f814c20b8ba8cc5..bf3233da3bb6af3b1d03e72d125bd39dfa9426ab 100644 (file)
@@ -4,11 +4,11 @@ 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: ['14'] # latest (16+) not functional
+        node: ['20']
     steps:
       - uses: actions/checkout@v1
       - name: install system dependencies
@@ -24,11 +24,11 @@ jobs:
         run: yarn test:javascript:browserstack
 
   build_latest:
-    name: Node 14
+    name: Node Latest
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        node: ['14'] # latest (16+) not functional
+        node: ['20'] # latest (16+) not functional
     steps:
       - uses: actions/checkout@v1
       - name: install system dependencies
@@ -44,7 +44,7 @@ jobs:
     strategy:
       matrix:
         platform: [ubuntu-latest, macos-latest, windows-latest]
-        node: [ '12', '14' ]
+        node: [ '16', '18' ]
     name: Node ${{ matrix.node }} (${{ matrix.platform }})
     runs-on: ${{ matrix.platform }}
     steps: