Further work

This commit is contained in:
AZMCode
2020-08-19 15:35:24 -04:00
2 changed files with 31 additions and 2 deletions

View File

@@ -2,6 +2,21 @@ name: CI
on: ["push"]
jobs:
# Test:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout Commit
# uses: actions/checkout@v2
#
# - name: Setup Node.js environment
# uses: actions/setup-node@v2.1.1
#
# - name: Install Dependencies
# run: npm install
#
# - name: Run Tests
# run: npm run test
Build:
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
@@ -34,6 +49,16 @@ jobs:
lib/**/*
package.json
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.1.4
with:
name: baileysBuilt
path: |
docs/**/*
lib/**/*
package.json
Publish-Docs:
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
runs-on: ubuntu-latest