diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/deploy.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index eaf50c1..36f2cb8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,7 +1,13 @@ name: Deploy CI -on: [push, pull_request] - +on: + push: + branches: + - master + pull_request: + branches: + - master + jobs: build: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa38050..8b3d85f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,6 +9,8 @@ jobs: uses: actions/checkout@v1 - name: Setup Node uses: actions/setup-node@v1 + with: + node-version: 14 - name: Install Dependencies run: npm install - name: Run Tests |
