2
0
mirror of https://github.com/tenrok/vue-cron-editor-bootstrap.git synced 2026-05-27 14:50:05 +03:00
This commit is contained in:
Alex Freitas
2020-05-21 16:15:42 -03:00
parent cd320bb0ac
commit ec2e8b169b
-28
View File
@@ -1,28 +0,0 @@
name: Run unit tests and publish samples
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: npm install and test
run: |
npm ci
npm run test:unit
- name: build samples
run: |
npx vue-cli-service build
- name: Deploy to GH Pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: dist # The folder the action should deploy.
env:
CI: true