Skip to content

Commit

Permalink
Update dependencies (#580)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhuleatt authored Jun 28, 2023
1 parent 4329c43 commit 631b1ab
Show file tree
Hide file tree
Showing 26 changed files with 12,983 additions and 36,095 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'
cache: 'npm'
- name: Install deps
run: npm ci
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:
name: Build
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'
cache: 'npm'
- name: Install deps
run: npm ci
- name: Build
id: pack-dir
run: ./build.sh
- name: 'Upload Artifact'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: reactfire-${{ github.run_id }}
path: |
Expand All @@ -44,12 +44,12 @@ jobs:
needs: build
strategy:
matrix:
node: ["14", "16"]
node: ["18", "20"]
fail-fast: false
name: Test Node.js ${{ matrix.node }} (Ubuntu)
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
Expand All @@ -62,12 +62,12 @@ jobs:
run: npm install
working-directory: ./functions
- name: Firebase emulator cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/firebase/emulators
key: firebase_emulators
- name: 'Download Artifacts'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
- name: Expand Artifact
run: |
chmod +x reactfire-${{ github.run_id }}/unpack.sh
Expand All @@ -83,10 +83,10 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: 'Download Artifacts'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
- name: Publish
run: |
cd ./reactfire-${{ github.run_id }}/
Expand Down
23 changes: 12 additions & 11 deletions docs/reference/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/reference/classes/ReactFireError.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/use.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- [Auth](#auth)
* [Display the current signed-in user](#display-the-current-signed-in-user)
* [Only render a component if a user is signed in](#only-render-a-component-if-a-user-is-signed-in)
* [Initialize Auth with custom Dependencies](#initialize-auth-with-custom-dependencies)
* [Initialize Auth with custom dependencies](#initialize-auth-with-custom-dependencies)
- [Cloud Firestore](#cloud-firestore)
* [Access data offline](#access-data-offline)
* [Show a single document](#show-a-single-document)
Expand Down
Loading

0 comments on commit 631b1ab

Please sign in to comment.