Skip to content

Commit 9c770b9

Browse files
authored
Merge pull request #268 from heroku/upgrade-node-versions
Upgrade GitHub Actions Node Test Versions
2 parents 02ac107 + 478e892 commit 9c770b9

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.github/workflows/ci.yml

+15-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,28 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10+
name: Node ${{ matrix.node-version }} / TS ${{ matrix.ts-version }} / React ${{ matrix.react-version }}
1011
strategy:
1112
fail-fast: false
1213
matrix:
13-
node-version: [8.x, 10.x, 12.x, 14.x, 15.x]
14+
node-version: [18.x, 20.x]
15+
ts-version: ['3.9', '4.1', '5.0']
16+
react-version: ['16']
1417
steps:
1518
- uses: actions/checkout@v2
16-
- name: Use Node.js ${{ matrix.node-version }}
19+
- name: Node.js ${{ matrix.node-version }}
1720
uses: actions/setup-node@v1
1821
with:
1922
node-version: ${{ matrix.node-version }}
20-
- run: npm ci
23+
24+
- name: Install Dependencies
25+
run: npm ci
26+
27+
- name: Install TypeScript ${{ matrix.ts-version }}
28+
run: npm install typescript@${{ matrix.ts-version }}
29+
30+
- name: Install React ${{ matrix.react-version }}
31+
run: npm install react@${{ matrix.react-version }}
32+
2133
- run: npm run lint
2234
- run: npm test

LICENSE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Heroku
3+
Copyright (c) 2023 Heroku
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -26,7 +26,7 @@ License for portions of React Redux project from which this was derived:
2626

2727
The MIT License (MIT)
2828

29-
Copyright (c) 2015 Dan Abramov
29+
Copyright (c) 2023 Dan Abramov
3030

3131
Permission is hereby granted, free of charge, to any person obtaining a copy
3232
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)