24 lines
		
	
	
		
			613 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			613 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Build and Deploy vuepress
 | 
						|
on: [push]
 | 
						|
jobs:
 | 
						|
  build-and-deploy:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - name: Checkout
 | 
						|
        uses: actions/checkout@master
 | 
						|
 | 
						|
      - name: vuepress-deploy
 | 
						|
        uses: jenkey2011/vuepress-deploy@master
 | 
						|
        env:
 | 
						|
          ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
 | 
						|
          TARGET_REPO: jbaysolutions/vue-grid-layout
 | 
						|
          TARGET_BRANCH: gh-pages
 | 
						|
          BUILD_SCRIPT: cd website && yarn && yarn build
 | 
						|
          BUILD_DIR: public
 | 
						|
 | 
						|
      - name: test:unit
 | 
						|
        run: |
 | 
						|
          yarn
 | 
						|
          yarn test:unit
 | 
						|
          yarn test:cover          
 |