publish via Google-owned npm registry #710
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: '24' | |
| 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: ["22", "24"] | |
| 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: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - 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 | |
| type-check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| react: ["18", "19"] | |
| fail-fast: false | |
| name: Type check (React ${{ matrix.react }}) | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install deps | |
| run: npm ci | |
| - name: Install React ${{ matrix.react }} types | |
| run: npm install --no-save react@${{ matrix.react }} react-dom@${{ matrix.react }} @types/react@${{ matrix.react }} @types/react-dom@${{ matrix.react }} | |
| - name: Type check | |
| run: npx tsc --noEmit | |
| 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: '24' | |
| 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 }} |