chore: improve package.json
exports, keywords and fix broken coverage
#34
This file contains 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 to package managers | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
on: | |
push: | |
branches: | |
- main | |
# workflow_dispatch: | |
# inputs: | |
# forceGPR: | |
# description: Force GPR release | |
# type: boolean | |
# required: false | |
# default: false | |
jobs: | |
install-deps: | |
name: π¦ Install dependencies | |
if: github.repository == 'lukemorales/funkcia' && github.event_name != 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Checkout Repository | |
uses: actions/checkout@v4 | |
- name: π§ Install PNPM | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: β»οΈ Cache node_modules | |
uses: actions/cache@v4 | |
id: pnpm-cache | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: π οΈ Setup Node and install project dependencies | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'latest' | |
check-latest: true | |
cache: 'pnpm' | |
if: steps.pnpm-cache.outputs.cache-hit != 'true' | |
- run: pnpm install --prefer-offline | |
build: | |
name: ποΈ Build package | |
runs-on: ubuntu-latest | |
needs: install-deps | |
steps: | |
- name: π Checkout Repository | |
uses: actions/checkout@v4 | |
- name: π§ Install PNPM | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: π οΈ Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'latest' | |
check-latest: true | |
cache: 'pnpm' | |
- name: π¦ Install dependencies | |
if: steps.pnpm-cache.outputs.cache-hit != 'true' | |
run: pnpm install --prefer-offline | |
- name: π¨ Check for errors | |
run: pnpm run lint | |
- name: π§ͺ Run tests | |
run: pnpm run test:ci | |
- name: βοΈ Build package | |
run: pnpm run build | |
release: | |
name: π Release to NPM | |
if: github.event.inputs.forceGPR != 'true' | |
runs-on: ubuntu-latest | |
needs: build | |
outputs: | |
published: ${{ steps.changesets.outputs.published }} | |
steps: | |
- name: π Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: π§ Install PNPM | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: β»οΈ Load node_modules | |
uses: actions/cache@v4 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- name: β»οΈ Load build files | |
uses: actions/cache@v4 | |
with: | |
path: "**/dist" | |
key: ${{ runner.os }}-build-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- name: π οΈ Setup Node for NPM | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '16.14.2' | |
check-latest: true | |
cache: 'pnpm' | |
registry-url: 'https://registry.npmjs.org' | |
- name: π€ Set git user | |
run: | | |
git config --global user.email "lukemorales@live.com" | |
git config --global user.name "Luke Morales" | |
- name: π Create Changesets Pull Request or Publish to NPM | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
setupGitUser: false | |
title: "chore(changesets): bump package version" | |
commit: "chore: bump package version" | |
version: node .github/changeset-version.js | |
publish: pnpm run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# gpr-release: | |
# name: π Release to GitHub Package Manager | |
# if: github.event.inputs.forceGPR == 'true' || needs.release.outputs.published == 'true' | |
# runs-on: ubuntu-latest | |
# needs: [build, release] | |
# permissions: | |
# contents: read | |
# packages: write | |
# steps: | |
# - name: π Checkout Repository | |
# uses: actions/checkout@v4 | |
# - name: π§ Install PNPM | |
# uses: pnpm/action-setup@v3 | |
# with: | |
# version: 8 | |
# - name: β»οΈ Load node_modules | |
# uses: actions/cache@v4 | |
# with: | |
# path: "**/node_modules" | |
# key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }} | |
# - name: π οΈ Setup Node for GPR | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: '16.14.2' | |
# check-latest: true | |
# cache: 'pnpm' | |
# registry-url: 'https://npm.pkg.github.com' | |
# - name: π¦ Install dependencies | |
# if: steps.pnpm-cache.outputs.cache-hit != 'true' | |
# run: pnpm install --prefer-offline | |
# - name: βοΈ Build package | |
# run: pnpm run build | |
# - name: π Publish to GPR | |
# run: pnpm publish | |
# env: | |
# NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} |