π©βπ» dx: Run GHA workflows for PRs in merge queue. #1907
This file contains 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: ci:build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Continuous integration (build) | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v3 | |
- name: Install πΎ | |
uses: meteor-actions/install@v3 | |
- name: Cache build π½ | |
uses: meteor-actions/cache-build@v3 | |
with: | |
key: build | |
- name: Build ποΈ | |
run: meteor build ../dist |