mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	* fix: disallow corepack from fetching latest manager version instead use specified version in package.json * Update Changelog * fix? * apply COREPACK_DEFAULT_TO_LATEST: 0 to every github workflows * Revert "apply COREPACK_DEFAULT_TO_LATEST: 0 to every github workflows" This reverts commit 67f0dc31adaa04f891f74f5c44a3d4d13a302a03. * apply COREPACK_DEFAULT_TO_LATEST: 0 to every github workflows (re) * fix * fix? * revert: removing corepack enable * test: set COREPACK_DEFAULT_TO_LATEST for federation tests --------- Co-authored-by: Marie <github@yuugi.dev> Co-authored-by: anatawa12 <anatawa12@icloud.com>
		
			
				
	
	
		
			62 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
	
		
			1.6 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/**
 | 
						|
      - .github/workflows/test-misskey-js.yml
 | 
						|
  pull_request:
 | 
						|
    branches: [ develop ]
 | 
						|
    paths:
 | 
						|
      - packages/misskey-js/**
 | 
						|
      - .github/workflows/test-misskey-js.yml
 | 
						|
 | 
						|
env:
 | 
						|
  COREPACK_DEFAULT_TO_LATEST: 0
 | 
						|
 | 
						|
jobs:
 | 
						|
  test:
 | 
						|
    name: Unit tests (misskey.js)
 | 
						|
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    strategy:
 | 
						|
      matrix:
 | 
						|
        node-version: [22.11.0]
 | 
						|
        # 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.1.0
 | 
						|
        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@v5
 | 
						|
        with:
 | 
						|
          token: ${{ secrets.CODECOV_TOKEN }}
 | 
						|
          files: ./packages/misskey-js/coverage/coverage-final.json
 |