Skip to content

refactor: Github Actions 워크플로 개선 #4

refactor: Github Actions 워크플로 개선

refactor: Github Actions 워크플로 개선 #4

Workflow file for this run

name: CI
on:
pull_request:
branches: ['main', 'dev']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
command: ['build', 'build-storybook']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node.js 및 NPM 설치
uses: ./.github/actions/install
- run: npm run ${{ matrix.command }}