Create ci.yml

This commit is contained in:
Niklas von Hertzen 2020-07-28 22:59:26 +08:00 committed by GitHub
parent 4dd4a69c7a
commit b308cbd998
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

42
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,42 @@
# This is a basic workflow to help you get started with Actions
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Npm install
run: npm ci
- name: Build
run: npm run build
- name: Pack
run: |
npm pack
mv html2canvas-*.tgz html2canvas.tgz
tar --list --verbose --file=html2canvas.tgz
- name: Upload npm pack
uses: actions/upload-artifact@v2
with:
name: npm
path: html2canvas.tgz
- name: Upload dist
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
- name: Upload build
uses: actions/upload-artifact@v2
with:
name: build
path: build