Continuous Integration #3366
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
branches: [staging, master] | |
pull_request: | |
merge_group: | |
workflow_call: | |
inputs: | |
sha: | |
description: The commit SHA to run the workflow on | |
required: false | |
type: string | |
secrets: | |
codecov_token: | |
description: Codecov token | |
required: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
with: | |
ref: ${{ inputs.sha }} | |
- name: Build test image | |
uses: guidojw/actions/build-docker-image@abb0ee8d1336edf73383f2e5a09abd3a22f25b13 # v1.3.3 | |
with: | |
file: Dockerfile | |
target: base | |
name: app | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
with: | |
ref: ${{ inputs.sha }} | |
- name: Add problem matchers | |
run: | | |
echo '::add-matcher::.github/problem-matchers/actionlint.json' | |
echo '::add-matcher::.github/problem-matchers/ember-template-lint.json' | |
echo '::add-matcher::.github/problem-matchers/eslint-stylish.json' | |
- name: Download actionlint | |
run: | | |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) 1.6.24 | |
- name: Load test image | |
uses: guidojw/actions/load-docker-image@abb0ee8d1336edf73383f2e5a09abd3a22f25b13 # v1.3.3 | |
with: | |
name: app | |
- name: Lint | |
run: | | |
EXIT_STATUS=0 | |
./actionlint -ignore 'property "gh_app_private_key" is not defined' -ignore 'SC2153:' \ | |
-ignore 'property "sha" is not defined in object type {}' || EXIT_STATUS=$? | |
docker run app yarn lint:hbs || EXIT_STATUS=$? | |
docker run app yarn lint:js || EXIT_STATUS=$? | |
docker run app /bin/bash -c 'yarn lint:scss -f github | sed "s|$(pwd)/||g" ; exit ${PIPESTATUS[0]}' || \ | |
EXIT_STATUS=$? | |
exit $EXIT_STATUS | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
with: | |
ref: ${{ inputs.sha }} | |
- name: Load test image | |
uses: guidojw/actions/load-docker-image@abb0ee8d1336edf73383f2e5a09abd3a22f25b13 # v1.3.3 | |
with: | |
name: app | |
- name: Test | |
run: | | |
mkdir coverage | |
docker run -e CI=true -e COVERAGE=true -v "$(pwd)"'/coverage:/opt/app/coverage' app yarn test:ember | |
- name: Upload coverage report to Codecov | |
if: ${{ !cancelled() }} | |
uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4.1.0 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload coverage report artifact | |
if: ${{ !cancelled() }} | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: coverage | |
path: coverage/ | |
if-no-files-found: error |