mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-29 12:34:13 +00:00 
			
		
		
		
	* wip * wip * シンボリックリンクやめた * install lib dependency * bring live2d assets from misskey-dev/assets * refactor * nanka iroiro * コミット忘れ * random motion * wip * run git submodule update --init * コミット忘れ * refactor * fix bug * Update misskey-assets * lint * lint * lint * 藍モード修正 (#7702) * lazy load live2d script * fix typo * lazy load also widget * hot link to cubism core * https://github.com/misskey-dev/misskey/pull/7702/files#r695623821 * fix lint * remove live2d stuff * use iframe * update * Update gulpfile.ts * update * Update .gitattributes * update Co-authored-by: tamaina <tamaina@hotmail.co.jp>
		
			
				
	
	
		
			59 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Node.js CI
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|       - develop
 | |
|   pull_request:
 | |
| 
 | |
| jobs:
 | |
|   build_and_test:
 | |
|     runs-on: ubuntu-latest
 | |
| 
 | |
|     strategy:
 | |
|       matrix:
 | |
|         node-version: [14.x, 16.x]
 | |
| 
 | |
|     services:
 | |
|       postgres:
 | |
|         image: postgres:10-alpine
 | |
|         ports:
 | |
|           - 5432:5432
 | |
|         env:
 | |
|           POSTGRES_DB: test-misskey
 | |
|           POSTGRES_HOST_AUTH_METHOD: trust
 | |
|       redis:
 | |
|         image: redis:alpine
 | |
|         ports:
 | |
|           - 6379:6379
 | |
| 
 | |
|     steps:
 | |
|     - uses: actions/checkout@v2
 | |
|       with:
 | |
|         submodules: true
 | |
|     - name: Use Node.js ${{ matrix.node-version }}
 | |
|       uses: actions/setup-node@v1
 | |
|       with:
 | |
|         node-version: ${{ matrix.node-version }}
 | |
|     - name: Install dependencies
 | |
|       run: yarn install
 | |
|     - name: Check yarn.lock
 | |
|       run: git diff --exit-code yarn.lock
 | |
|     - name: Copy Configure
 | |
|       run: cp .circleci/misskey/*.yml .config
 | |
|     - name: Build
 | |
|       run: yarn build
 | |
|     - name: Test
 | |
|       run: yarn test
 | |
| 
 | |
|   lint:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - uses: actions/checkout@v2
 | |
|       with:
 | |
|         submodules: true
 | |
|     - uses: actions/setup-node@v1
 | |
|       with:
 | |
|         node-version: 12.x
 | |
|     - run: yarn install
 | |
|     - run: yarn lint
 |