refactor(neon_framework): rename credentials password to appPassowrd #5066
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: Dart CI | |
on: | |
pull_request: | |
concurrency: | |
group: dart-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
dart-ci: | |
name: Dart CI | |
runs-on: ubuntu-22.04 | |
permissions: | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Login to GHCR | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3 | |
- name: Install dart | |
uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 # v1 | |
with: | |
sdk: 3.5 | |
- name: Setup | |
run: ./tool/setup.sh | |
- name: Check up-to-date pubspec.lock | |
run: | | |
if [ -n "$(git status --porcelain)" ]; then | |
git --no-pager diff | |
exit 1 | |
fi | |
- name: Check formatting | |
run: melos run format:check | |
- name: Lint code | |
run: melos run analyze | |
- name: Run tests | |
run: | | |
mapfile -t packages < <(melos list --parsable --diff=${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }}..${{ github.event.pull_request.head.sha }} --include-dependents | xargs -r -n1 basename) | |
if [ -z "$packages" ]; then exit 0; fi | |
packages_glob="$(printf ",%s" "${packages[@]}")" | |
packages_glob="${packages_glob:1}" | |
if [ -n "$packages_glob" ]; then | |
if [[ "$packages_glob" == *"nextcloud"* ]]; then | |
if [[ "${{ github.event.pull_request.head.repo.full_name }}" == "${{ github.repository }}" ]]; then | |
export PUSH_IMAGES="1" | |
fi | |
./tool/build-dev-container.sh | |
fi | |
MELOS_PACKAGES="$packages_glob" melos test | |
else | |
./tool/build-dev-container.sh | |
melos test | |
fi | |
- name: Setup Codecov | |
run: | | |
cd /tmp | |
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import | |
curl -Os https://uploader.codecov.io/latest/linux/codecov | |
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM | |
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig | |
gpgv codecov.SHA256SUM.sig codecov.SHA256SUM | |
shasum -a 256 -c codecov.SHA256SUM | |
chmod +x codecov | |
mkdir /tmp/bin | |
mv codecov /tmp/bin | |
- name: Upload coverage to Codecov | |
run: | | |
export PATH="$PATH:/tmp/bin" | |
melos exec --file-exists="coverage/lcov.info" --concurrency=1 -- " | |
codecov --verbose upload-process --fail-on-error -F MELOS_PACKAGE_NAME -f MELOS_PACKAGE_PATH/coverage/lcov.info -t ${{ secrets.CODECOV_TOKEN }} | |
" | |
# Run as the last step to avoid running any other steps with downgraded dependencies | |
- name: Lint code with downgraded dependencies | |
run: | | |
melos exec dart pub downgrade | |
melos run analyze |