CHANGELOG: add release notes for 7.2.0 #94
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: | |
pull_request: | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: beta | |
- name: Install dependencies | |
run: dart pub get | |
- name: Analyze library | |
run: dart analyze lib | |
- name: Analyze tests | |
run: dart analyze test | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: beta | |
- name: Install dependencies | |
run: dart pub get | |
- name: Run tests | |
run: dart test | |
env: | |
FIGMA_TEST_FILE: ${{ secrets.FIGMA_TEST_FILE }} | |
FIGMA_ACCESS_TOKEN: ${{ secrets.FIGMA_ACCESS_TOKEN }} | |
FIGMA_TEST_TEAM: ${{ secrets.FIGMA_TEST_TEAM }} | |
FIGMA_TEST_PROJECT: ${{ secrets.FIGMA_TEST_PROJECT }} |