Skip to content

Images are placed from top if it's portrait and are coming in middle if it's landscape. #16 solved ! #94

Images are placed from top if it's portrait and are coming in middle if it's landscape. #16 solved !

Images are placed from top if it's portrait and are coming in middle if it's landscape. #16 solved ! #94

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- name: lint
run: npm run lint
- name: test
run: npm run test:ci