Updating deps for node 20 #578
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test and publish | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| paths-ignore: | |
| - "**/*.md" | |
| pull_request: | |
| branches: | |
| - "**" | |
| release: | |
| types: | |
| - published | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Build | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install deps | |
| run: npm ci | |
| - name: Build | |
| id: pack-dir | |
| run: ./build.sh | |
| - name: 'Upload Artifact' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: reactfire-${{ github.run_id }} | |
| path: | | |
| reactfire.tgz | |
| publish.sh | |
| unpack.sh | |
| retention-days: 1 | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: build | |
| strategy: | |
| matrix: | |
| node: ["20"] | |
| fail-fast: false | |
| name: Test Node.js ${{ matrix.node }} (Ubuntu) | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| cache: 'npm' | |
| - name: Install deps | |
| run: npm ci | |
| - name: Install deps for functions | |
| run: npm install | |
| working-directory: ./functions | |
| - name: Firebase emulator cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/firebase/emulators | |
| key: firebase_emulators | |
| - name: 'Download Artifacts' | |
| uses: actions/download-artifact@v4 | |
| - name: Expand Artifact | |
| run: | | |
| chmod +x reactfire-${{ github.run_id }}/unpack.sh | |
| ./reactfire-${{ github.run_id }}/unpack.sh | |
| - name: Run tests | |
| run: npm run test | |
| publish: | |
| runs-on: ubuntu-latest | |
| name: Publish (NPM) | |
| needs: test | |
| if: ${{ github.ref == 'refs/heads/main' || github.event_name == 'release' }} | |
| steps: | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: 'Download Artifacts' | |
| uses: actions/download-artifact@v4 | |
| - name: Publish | |
| run: | | |
| cd ./reactfire-${{ github.run_id }}/ | |
| chmod +x publish.sh | |
| ./publish.sh | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |