Skip to content

Bump actions/checkout from 4.1.1 to 4.1.2 #190

Bump actions/checkout from 4.1.1 to 4.1.2

Bump actions/checkout from 4.1.1 to 4.1.2 #190

Workflow file for this run

name: Dart
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 0"
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- uses: dart-lang/setup-dart@fedb1266e91cf51be2fdb382869461a434b920a3
- uses: nanasess/setup-chromedriver@42cc2998329f041de87dc3cfa33a930eacd57eaa
- name: Install dependencies
run: dart pub get
- name: Validate formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze source code
run: dart analyze
# Disabled; tracked via #75.
# - name: Run tests
# run: |
# export DISPLAY=:99
# chromedriver --port=4444 --url-base=/wd/hub &
# sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
# dart test
# env:
# CHROMEDRIVER_ARGS: '--no-sandbox --headless'