Skip to content

Commit

Permalink
chore: 2023-03-20 release (#514)
Browse files Browse the repository at this point in the history
* docs(firestore-stripe-payments): Fix GitHub links to `firestore-stripe-web-sdk` README

* docs(firestore-stripe-payments): Reference Prices resource for restricted key instructions

Fixes #477

* fix: Address issue where `insertInvoiceRecord` function fails (#511)

In case where the Invoice has no associated Payment Intent, the Firestore collection write would fail. Fixes #505

* chore(deps): Bump `typescript` dependency (#512)

* chore(firestore-stripe-payments): 0.3.3 release

* chore: Bump `actions/checkout`, `actions/setup-node` versions for test workflows

* chore: Bump `nick-invision/retry` version for test workflows

---------

Co-authored-by: Darren Ackers <[email protected]>
  • Loading branch information
jsteele-stripe and dackers86 committed Mar 20, 2023
1 parent 785d8a7 commit 98c9777
Show file tree
Hide file tree
Showing 11 changed files with 13,892 additions and 2,016 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,24 @@ on:
jobs:
nodejs:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false
strategy:
matrix:
node: ["14", "16"]
max-parallel: 1
name: node.js_${{ matrix.node }}_test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: NPM install
run: npm install
- name: Install firebase CLI
uses: nick-invision/retry@v1
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
retry_wait_seconds: 60
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: NPM Install & Build
run: npm i
- name: Prettier Lint Check
Expand Down
Loading

0 comments on commit 98c9777

Please sign in to comment.