diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index be9c2f2..9acb67e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,15 +14,15 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: ['18'] + node: ['20'] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b216e4..9784faa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,15 +13,15 @@ jobs: name: Release / Node ${{ matrix.node }} strategy: matrix: - node: ['18'] + node: ['20'] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c25e07..2960728 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,15 +13,15 @@ jobs: name: Run tests strategy: matrix: - node: ['18'] + node: ['20'] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} diff --git a/README.md b/README.md index 600beb1..15cfadd 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ JS Client library to interact with Supabase Functions. ## testing -To run tests you will need Node 18+. +To run tests you will need Node 20+. You are going to need docker daemon running to execute tests. diff --git a/src/index.ts b/src/index.ts index bc45b76..1ad5c1d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,6 @@ export { FunctionsFetchError, FunctionsHttpError, FunctionsRelayError, - FunctionsResponse, - FunctionRegion + FunctionRegion, + FunctionsResponse } from './types'