Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
joeworkman committed Aug 18, 2023
1 parent fb8b5fa commit 40d9e45
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 40d9e45

Please sign in to comment.