Skip to content

Commit

Permalink
ci: add github action for run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leynier authored May 30, 2021
1 parent fdcb098 commit a9f5d90
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: test

on:
pull_request:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 'Git Checkout'
uses: actions/checkout@v2

- name: 'Install Dart'
uses: dart-lang/setup-dart@v1

- name: 'Install Tools'
run: dart pub global activate melos

- name: 'Bootstrap Workspace'
run: dart pub global run melos bootstrap

- name: 'Test'
run: dart pub global run melos run test

0 comments on commit a9f5d90

Please sign in to comment.