chore: migrate from Firebase v9 compat to v12 modular API #9
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: CI - Pull Request | |
| on: pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| registry-url: https://npm.pkg.github.com/ | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: Intstalling dependencies | |
| run: npm install | |
| - name: Building the Application | |
| run: npm run build | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| registry-url: https://npm.pkg.github.com/ | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: Installing dependencies | |
| run: npm install | |
| - name: Building the Application | |
| run: npm run build |