Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade GitHub Actions Node Test Versions #268

Merged
merged 4 commits into from
May 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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