chore: update Node.js version in .nvmrc and clean up package.json (#374) #294
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| release: | |
| if: github.repository == 'toss/es-hangul' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v5 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Install Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| cache: 'yarn' | |
| node-version-file: '.nvmrc' | |
| - name: Install Dependencies | |
| run: yarn install | |
| - name: Update npm | |
| run: npm install -g [email protected] | |
| - name: Build | |
| run: yarn build | |
| - name: Type Check | |
| run: yarn typecheck | |
| - name: Create Release Pull Request or Publish to npm | |
| uses: changesets/action@v1 | |
| with: | |
| title: 'chore: version packages' | |
| commit: 'chore: version packages' | |
| version: yarn changeset:version | |
| publish: yarn changeset:publish | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_CONFIG_PROVENANCE: true |