Skip to content

Commit

Permalink
Merge pull request #268 from heroku/upgrade-node-versions
Browse files Browse the repository at this point in the history
Upgrade GitHub Actions Node Test Versions
  • Loading branch information
dstarner committed May 2, 2023
2 parents 02ac107 + 478e892 commit 9c770b9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,28 @@ on:
jobs:
build:
runs-on: ubuntu-latest
name: Node ${{ matrix.node-version }} / TS ${{ matrix.ts-version }} / React ${{ matrix.react-version }}
strategy:
fail-fast: false
matrix:
node-version: [8.x, 10.x, 12.x, 14.x, 15.x]
node-version: [18.x, 20.x]
ts-version: ['3.9', '4.1', '5.0']
react-version: ['16']
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci

- name: Install Dependencies
run: npm ci

- name: Install TypeScript ${{ matrix.ts-version }}
run: npm install typescript@${{ matrix.ts-version }}

- name: Install React ${{ matrix.react-version }}
run: npm install react@${{ matrix.react-version }}

- run: npm run lint
- run: npm test
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 Heroku
Copyright (c) 2023 Heroku

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

The MIT License (MIT)

Copyright (c) 2015 Dan Abramov
Copyright (c) 2023 Dan Abramov

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

0 comments on commit 9c770b9

Please sign in to comment.