-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (27 loc) · 767 Bytes
/
Copy pathbuild.yml
File metadata and controls
29 lines (27 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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: 22
- 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