2
0
mirror of https://github.com/tenrok/vue-cron-editor-bootstrap.git synced 2026-06-05 16:52:25 +03:00

Firts version

This commit is contained in:
Alex Freitas
2020-05-21 15:42:12 -03:00
parent 2b3b0d24d3
commit cd320bb0ac
27 changed files with 19397 additions and 675 deletions
+28
View File
@@ -0,0 +1,28 @@
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