mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	* Revert "fix(build): corepackのバグの回避 (#15387)"
This reverts commit 9c70a4e631.
* deps: update pnpm to v10
* fix broken lockfile
* update changelog
* fix
* fix
* Revert "fix"
This reverts commit 4abc6c194edc20989f5ec97d343307a4b8c9047d.
* fix
* fix
* attempt to fix docker build
* lint fixes
* fix: revertしすぎた
* detect pnpm version and install it
* fix: そもそもpnpmを2回入れる必要がないかも
* fix
* refactor
* fix
* refactor: remove unnecessary arg
* Update Dockerfile
* update pnpm to v10.6.1
* Update Changelog
* chore: use node to avoid installing jq
		
	
			
		
			
				
	
	
		
			44 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: API report (misskey.js)
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    paths:
 | 
						|
      - packages/misskey-js/**
 | 
						|
      - .github/workflows/api-misskey-js.yml
 | 
						|
  pull_request:
 | 
						|
    paths:
 | 
						|
      - packages/misskey-js/**
 | 
						|
      - .github/workflows/api-misskey-js.yml
 | 
						|
jobs:
 | 
						|
  report:
 | 
						|
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    steps:
 | 
						|
      - name: Checkout
 | 
						|
        uses: actions/checkout@v4.2.2
 | 
						|
 | 
						|
      - name: Setup pnpm
 | 
						|
        uses: pnpm/action-setup@v4.1.0
 | 
						|
 | 
						|
      - name: Setup Node.js
 | 
						|
        uses: actions/setup-node@v4.2.0
 | 
						|
        with:
 | 
						|
          node-version-file: '.node-version'
 | 
						|
          cache: 'pnpm'
 | 
						|
 | 
						|
      - name: Install dependencies
 | 
						|
        run: pnpm i --frozen-lockfile
 | 
						|
 | 
						|
      - name: Build
 | 
						|
        run: pnpm --filter misskey-js build
 | 
						|
 | 
						|
      - name: Check files
 | 
						|
        run: ls packages/misskey-js/built
 | 
						|
 | 
						|
      - name: API report
 | 
						|
        run: pnpm --filter misskey-js api-prod
 | 
						|
 | 
						|
      - name: Show report
 | 
						|
        if: always()
 | 
						|
        run: cat packages/misskey-js/temp/misskey-js.api.md
 |