Merge pull request #1673 from o1-labs/dw/mina-rust-use-release-tag #100
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 macOS 15 | |
| 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: macos-15 | |
| 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' |