Skip to content

feat(land): 새로운 렌딩페이지 디자인 적용 #5

feat(land): 새로운 렌딩페이지 디자인 적용

feat(land): 새로운 렌딩페이지 디자인 적용 #5

Workflow file for this run

name: App CI
env:
HUSKY: 0
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Pipelines:
runs-on: ubuntu-latest
strategy:
matrix:
command: [lint, test, build]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
- name: Run commands
run: pnpm ${{ matrix.command }}