diff --git a/.github/workflows/chrome.workflow.yml b/.github/workflows/chrome.workflow.yml index 50aa4371..b8e3f9fe 100644 --- a/.github/workflows/chrome.workflow.yml +++ b/.github/workflows/chrome.workflow.yml @@ -31,4 +31,4 @@ jobs: run: dart pub get - name: Test chrome - run: pub run test -p chrome \ No newline at end of file + run: dart pub run test -p chrome diff --git a/.github/workflows/node.workflow.yml b/.github/workflows/node.workflow.yml index d0fd4bfd..9694ba9f 100644 --- a/.github/workflows/node.workflow.yml +++ b/.github/workflows/node.workflow.yml @@ -31,4 +31,4 @@ jobs: run: dart pub get - name: Test node - run: pub run test -p node \ No newline at end of file + run: dart pub run test -p node diff --git a/.github/workflows/vm.workflow.yml b/.github/workflows/vm.workflow.yml index 87ff34a5..791b7e1f 100644 --- a/.github/workflows/vm.workflow.yml +++ b/.github/workflows/vm.workflow.yml @@ -31,4 +31,4 @@ jobs: run: dart pub get - name: Test dartvm - run: pub run test -p vm \ No newline at end of file + run: dart pub run test -p vm diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 649c9969..24a4b302 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,24 +10,27 @@ test-code-vm: stage: test script: - "export PATH=$PATH:/usr/lib/dart/bin:$HOME/.pub-cache/bin; \ - pub get; pub run test;" + dart pub get; \ + dart pub run test;" test-code-node: stage: test script: - "export PATH=$PATH:/usr/lib/dart/bin:$HOME/.pub-cache/bin; \ - pub get; pub run test --timeout 15m -p node" + dart pub get; \ + dart pub run test --timeout 15m -p node" test-code-chrome: stage: test script: - "export PATH=$PATH:/usr/lib/dart/bin:$HOME/.pub-cache/bin; \ - pub get; pub run test --timeout 15m -p chrome" + dart pub get; \ + dart pub run test --timeout 15m -p chrome" score-pana: stage: score script: - "export PATH=$PATH:/usr/lib/dart/bin:$HOME/.pub-cache/bin; \ - pub get; \ - pub global activate pana; \ + dart pub get; \ + dart pub global activate pana; \ pana ." diff --git a/.travis.yml b/.travis.yml index b675b0d4..71a8cea5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,6 @@ language: dart dart: - stable script: - - pub run test - - pub global activate pana - - pana . \ No newline at end of file + - dart pub run test + - dart pub global activate pana + - dart pana .