Skip to content

feat(ref: no-ref): ci-cd #3

feat(ref: no-ref): ci-cd

feat(ref: no-ref): ci-cd #3

Workflow file for this run

name: CI Checks
on:
push:
branches:
- '**'
jobs:
lint-and-build:
name: ci checks
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.27.1"
channel: "stable"
- name: Install Dependencies
run: flutter pub get
- name: Run Linter
run: flutter analyze
- name: Build Flutter Web
run: flutter build web