Merge pull request #1163 from data-for-change/feat-1110-map-zoom #375
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: deploy-development | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Setup node | |
| uses: actions/setup-node@master | |
| with: | |
| node-version: '22.x' | |
| - name: Install Dependencies | |
| run: npm install | |
| - name: Update browserlist DB | |
| run: npx update-browserslist-db@latest | |
| - name: Build | |
| run: npm run build:staging | |
| - name: Deploy | |
| uses: w9jds/[email protected] | |
| with: | |
| args: deploy --only hosting:dev | |
| env: | |
| FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
| PROJECT_ID: anyway-newsflash-infographics |