Skip to content

Commit 23373f1

Browse files
author
Mike Chu
committed
ci: remove Node 14 add 20
1 parent 8b632ba commit 23373f1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/javascript.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
- name: Set up Node
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 14
2120
cache-dependency-path: ./package-lock.json
2221
cache: 'npm'
2322
- name: Run linting
@@ -46,11 +45,11 @@ jobs:
4645
BROWSER_STACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
4746
BROWSER_STACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
4847
steps:
49-
- uses: actions/checkout@v3
48+
- name: Checkout code
49+
uses: actions/checkout@v3
5050
- name: Set up Node
5151
uses: actions/setup-node@v3
5252
with:
53-
node-version: 14
5453
cache: 'npm'
5554
cache-dependency-path: ./package-lock.json
5655
- name: Cross-browser and umd unit tests
@@ -63,9 +62,10 @@ jobs:
6362
runs-on: ubuntu-latest
6463
strategy:
6564
matrix:
66-
node: ['14', '16', '18' ]
65+
node: [ '16', '18', '20' ]
6766
steps:
68-
- uses: actions/checkout@v3
67+
- name: Checkout code
68+
uses: actions/checkout@v3
6969
- name: Set up Node ${{ matrix.node }}
7070
uses: actions/setup-node@v3
7171
with:

0 commit comments

Comments
 (0)