refactor(neon,neon_files,neon_news,neon_notes,neon_notifications): Use shared constants for app ids #1276
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
env: | |
PUB_ENVIRONMENT: bot.github | |
permissions: read-all | |
jobs: | |
dart-ci: | |
name: Dart CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.pub-cache/hosted | |
key: dart-ci | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install dart | |
uses: dart-lang/setup-dart@v1 | |
- name: Setup | |
run: ./tool/setup.sh | |
- name: Build test Docker image | |
run: ./tool/build-dev-container.sh | |
- name: Check formatting | |
run: melos run format-check | |
- name: Lint code | |
run: melos run analyze | |
- name: Run tests | |
run: melos run test |