Skip to content

Commit

Permalink
fix: remove preinstall (#910)
Browse files Browse the repository at this point in the history
  • Loading branch information
tasshi-me authored Oct 24, 2024
1 parent 4e8d2d7 commit 28318f2
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 1 deletion.
64 changes: 64 additions & 0 deletions .github/workflows/test-npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: test-npm

on:
push:
branches:
- main
- "renovate/**"
pull_request:

jobs:
prepare:
name: Prepare npm package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: "pnpm"

- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm pack
- run: mv kintone-cli-*.tgz kintone-cli.tgz
- uses: actions/upload-artifact@v4
with:
name: kintone-cli.tgz
path: kintone-cli.tgz

test-install:
name: Test npm install - Node.js ${{ matrix.os }} ${{ matrix.node-version }}
needs: prepare
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [22.x, 20.x, 18.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/download-artifact@v4
with:
name: kintone-cli.tgz
- run: npm install -g kintone-cli.tgz
- run: cli-kintone --version

test-npx:
name: Test npx - Node.js ${{ matrix.os }} ${{ matrix.node-version }}
needs: prepare
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [22.x, 20.x, 18.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/download-artifact@v4
with:
name: kintone-cli.tgz
- run: npx kintone-cli.tgz --version
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"cli-kintone": "cli.js"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "run-s clean:lib 'build:tsc --watch'",
"build": "run-s clean:lib build:tsc",
"build:all": "run-s build build:artifacts",
Expand Down

0 comments on commit 28318f2

Please sign in to comment.