Merge pull request #1385 from hideo54/dependabot/npm_and_yarn/scrape-… #2222
This file contains 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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- run: npm ci | |
- uses: google-github-actions/auth@v2 | |
if: github.actor != 'dependabot[bot]' | |
with: | |
credentials_json: '${{secrets.FIREBASE_SERVICE_ACCOUNT_HIDEO54}}' | |
- run: npm run build | |
env: | |
FOURSQUARE_ACCESS_TOKEN: '${{ secrets.FOURSQUARE_ACCESS_TOKEN }}' | |
SEGA_ID: '${{ secrets.SEGA_ID }}' | |
SEGA_PASSWORD: '${{ secrets.SEGA_PASSWORD }}' | |
DAM_ID: '${{ secrets.DAM_ID }}' | |
DAM_PASSWORD: '${{ secrets.DAM_PASSWORD }}' | |
NEXT_TELEMETRY_DISABLED: 1 |