Merge branch 'main' into mntor-5162-fix #14992
Workflow file for this run
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: 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." |