Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2 from actions/es2019
Browse files Browse the repository at this point in the history
es2019 support and node 12+
  • Loading branch information
bryanmacfarlane authored Jan 10, 2020
2 parents c253d26 + a975c51 commit a61d469
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
runs-on: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [8.x, 10.x, 12.x]
node-version: [12.x]
fail-fast: false

runs-on: ${{ matrix.runs-on }}
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ A lightweight HTTP client optimized for use with actions, TypeScript with generi

- HTTP client with TypeScript generics and async/await/Promises
- Typings included so no need to acquire separately (great for intellisense and no versioning drift)
- [Proxy support](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners#using-a-proxy-server-with-self-hosted-runners) just works with actions and the runner
- Targets ES2019 (runner runs actions with node 12+). Only supported on node 12+.
- Basic, Bearer and PAT Support out of the box. Extensible handlers for others.
- Proxy support, just works with actions and the runner
- Redirects supported

## Install
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es2015",
"target": "es2019",
"module": "commonjs",
"moduleResolution": "node",
"typeRoots": [ "node_modules/@types" ],
Expand Down

0 comments on commit a61d469

Please sign in to comment.