make sure starter2024 is included in the list of libraries to bundle … #85
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: Makefile CI | |
| on: | |
| push: | |
| branches: [ "horizon" ] | |
| pull_request: | |
| branches: [ "horizon" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/[email protected] | |
| with: | |
| node-version: 24 | |
| - name: install | |
| run: | |
| make install | |
| - name: build | |
| run: make | |
| - name: run tests | |
| run: make all-pyret-test | |
| deploy-trigger: | |
| needs: build | |
| uses: ./.github/workflows/deploy-trigger.yml | |
| secrets: inherit | |
| if: github.event_name != 'pull_request' |