Merge pull request #1820 from o1-labs/copilot/remove-outdated-functions #121
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 Ubuntu 24.04 ARM | |
| on: | |
| push: | |
| branches: [main, develop] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| frontend: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v6 | |
| - id: versions | |
| uses: ./.github/actions/load-versions | |
| - name: Frontend build | |
| uses: ./.github/actions/frontend-build | |
| with: | |
| node-version: ${{ steps.versions.outputs.node-version }} | |
| test-build-commands: 'true' |