61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
name: Release NPM package
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- source/**
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
# Checkout project repository
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
# Setup git profile
|
|
- name: git config
|
|
run: |
|
|
git config user.name "${GITHUB_ACTOR}"
|
|
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
|
|
|
# Setup Node.js environment
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
registry-url: https://registry.npmjs.org/
|
|
node-version: 22
|
|
|
|
# Install pnpm
|
|
- uses: pnpm/action-setup@v4
|
|
name: Install pnpm
|
|
id: pnpm-install
|
|
with:
|
|
version: 10
|
|
cache: true
|
|
|
|
# Install dependencies
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
# Tests
|
|
- name: Run tests
|
|
run: pnpm test
|
|
|
|
# Setup NPM
|
|
- name: Create .npmrc
|
|
run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
|
|
env:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
# Publish version to public repository
|
|
- name: Release
|
|
run: pnpx release-it --ci
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|