-
Notifications
You must be signed in to change notification settings - Fork 299
37 lines (33 loc) · 1.67 KB
/
build.yaml
File metadata and controls
37 lines (33 loc) · 1.67 KB
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
30
31
32
33
34
35
36
37
name: Build
permissions: {}
on:
pull_request:
push:
jobs:
npm-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: "20.20.x"
- run: npm ci
- run: npm run build-glean
# Verify that the build (incl. type-checking) succeeds
# Upload sourcemaps to Sentry
- run: npm run build
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
NEXTAUTH_SECRET: "Unused, like the build result — we're just verifying that a build can succeed."
SENTRY_DSN: "Unused, like the build result — we're just verifying that a build can succeed."
EMAIL_FROM: "Unused, like the build result — we're just verifying that a build can succeed."
HIBP_KANON_API_TOKEN: "Unused, like the build result — we're just verifying that a build can succeed."
S3_BUCKET: "Unused, like the build result — we're just verifying that a build can succeed."
FX_REMOTE_SETTINGS_WRITER_SERVER: "Unused, like the build result — we're just verifying that a build can succeed."
FX_REMOTE_SETTINGS_WRITER_USER: "Unused, like the build result — we're just verifying that a build can succeed."
FX_REMOTE_SETTINGS_WRITER_PASS: "Unused, like the build result — we're just verifying that a build can succeed."
NIMBUS_UUID_NAMESPACE: "Unused, like the build result — we're just verifying that a build can succeed."
NIMBUS_SIDECAR_URL: "Unused, like the build result — we're just verifying that a build can succeed."