Bump vue from 2.6.14 to 3.0.0 #107
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'master' | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Java Set-Up | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: "adopt" | |
| java-version: "8" | |
| - name: Set up secrets | |
| run: 'echo "$NPM_AUTH" >> ~/.npmrc' | |
| env: | |
| NPM_AUTH: ${{secrets.NPM_AUTH}} | |
| - name: NodeJS Set-Up | |
| run: yarn install --save | |
| - name: Gradle Build | |
| run: /bin/sh ./gradlew build |