Load the package page version list without the JSON columns (#1833) #98
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: "Frontend Build" | |
| on: | |
| - push | |
| - pull_request | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: "Build" | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: "24" | |
| # .npmrc sets engine-strict against engines.npm so min-release-age is never silently | |
| # ignored, and that floor is newer than the npm bundled with node | |
| - name: "Update npm" | |
| run: "npm install -g npm@latest" # zizmor: ignore[adhoc-packages] npm can't bootstrap itself from a lockfile | |
| - name: "Install dependencies" | |
| run: "npm ci" | |
| - name: "Build assets" | |
| run: "npm run build" |