Skip to content

github action을 통해 배포 자동화를 진행할 때 pnpm 을 사용할 수 있도록 설정해줍니다 #3

github action을 통해 배포 자동화를 진행할 때 pnpm 을 사용할 수 있도록 설정해줍니다

github action을 통해 배포 자동화를 진행할 때 pnpm 을 사용할 수 있도록 설정해줍니다 #3

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
if: github.repository == 'toss/es-hangul'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/[email protected]
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install Dependencies
run: pnpm i
- name: Build
run: pnpm build
- name: Type Check
run: pnpm typecheck
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
publish: pnpm publish
version: pnpm run version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}