Skip to content

Feat: 로그인 인풋 height값 제거 #288

Feat: 로그인 인풋 height값 제거

Feat: 로그인 인풋 height값 제거 #288

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- dev
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: 3.19.6
- name: Make dotenv
run: |
touch .env
echo "${{ secrets.ENV }}" > .env
ls
shell: bash
- name: Install packages
run: flutter pub get
- name: Test
run: flutter test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: 3.19.6
- name: Make dotenv
run: |
touch .env
echo "${{ secrets.ENV }}" > .env
ls
shell: bash
- name: Install packages
run: flutter pub get
- name: Linter
run: flutter analyze