* update deps * Update package.json * update deps * build: pass --strip-leading-paths to restore 0.2.x behavior (#13684) * ✌️ * ✌️ * pureimageの代わりに@napi-rs/canvasを使う (#13748) * pureimageの代わりに@napi-rs/canvasを使う * remove writestream * remove createtemp * wip * Update ClientServerService.ts * update pnpm to 9.x * update deps * re: update pnpm to 9.x * update node * ✌️ --------- Co-authored-by: anatawa12 <anatawa12@icloud.com> Co-authored-by: tamaina <tamaina@hotmail.co.jp>
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
 | 
						|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
 | 
						|
 | 
						|
name: Test (misskey.js)
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [ develop ]
 | 
						|
    paths:
 | 
						|
      - packages/misskey-js/**
 | 
						|
  pull_request:
 | 
						|
    branches: [ develop ]
 | 
						|
    paths:
 | 
						|
      - packages/misskey-js/**
 | 
						|
 | 
						|
jobs:
 | 
						|
  test:
 | 
						|
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    strategy:
 | 
						|
      matrix:
 | 
						|
        node-version: [20.12.2]
 | 
						|
        # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
 | 
						|
 | 
						|
    steps:
 | 
						|
      - name: Checkout
 | 
						|
        uses: actions/checkout@v4.1.1
 | 
						|
 | 
						|
      - run: corepack enable
 | 
						|
 | 
						|
      - name: Setup Node.js ${{ matrix.node-version }}
 | 
						|
        uses: actions/setup-node@v4.0.2
 | 
						|
        with:
 | 
						|
          node-version: ${{ matrix.node-version }}
 | 
						|
          cache: 'pnpm'
 | 
						|
 | 
						|
      - name: Install dependencies
 | 
						|
        run: pnpm i --frozen-lockfile
 | 
						|
 | 
						|
      - name: Check pnpm-lock.yaml
 | 
						|
        run: git diff --exit-code pnpm-lock.yaml
 | 
						|
 | 
						|
      - name: Build
 | 
						|
        run: pnpm --filter misskey-js build
 | 
						|
 | 
						|
      - name: Test
 | 
						|
        run: pnpm --filter misskey-js test
 | 
						|
        env:
 | 
						|
          CI: true
 | 
						|
 | 
						|
      - name: Upload Coverage
 | 
						|
        uses: codecov/codecov-action@v4
 | 
						|
        with:
 | 
						|
          token: ${{ secrets.CODECOV_TOKEN }}
 | 
						|
          files: ./packages/misskey-js/coverage/coverage-final.json
 |