chore(deps): bump intl from 0.19.0 to 0.20.2 in /changelog_cli #67
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: Build and generate changelog | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: changelog_cli | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/setup-dart@v1 | |
- name: Install dependencies | |
run: dart pub get | |
- name: Activate the changelog_cli | |
run: dart pub global activate --source=path . | |
- name: Analyze project source | |
run: dart analyze | |
- name: Run tests | |
run: dart test | |
- name: Generate the changelog | |
run: changelog_cli generate |