Skip to content

Commit

Permalink
ci: remove Node 14 add 20
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Chu committed Feb 6, 2024
1 parent 8b632ba commit 23373f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 14
cache-dependency-path: ./package-lock.json
cache: 'npm'
- name: Run linting
Expand Down Expand Up @@ -46,11 +45,11 @@ jobs:
BROWSER_STACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSER_STACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
steps:
- uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 14
cache: 'npm'
cache-dependency-path: ./package-lock.json
- name: Cross-browser and umd unit tests
Expand All @@ -63,9 +62,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14', '16', '18' ]
node: [ '16', '18', '20' ]
steps:
- uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 23373f1

Please sign in to comment.