Skip to content

icons 패키지 추가 / Github Action type 커맨드 비활성화 #4

icons 패키지 추가 / Github Action type 커맨드 비활성화

icons 패키지 추가 / Github Action type 커맨드 비활성화 #4

Workflow file for this run

name: attraction_workflow
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
command: ['lint', 'build']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
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 }}