Skip to content

Commit

Permalink
chore: no cron, just simple on push and PR
Browse files Browse the repository at this point in the history
  • Loading branch information
philsturgeon committed Jun 7, 2021
1 parent 20192cd commit 411695f
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/CI-CD.yaml
@@ -1,15 +1,11 @@
# GitHub Actions workflow
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions
# https://www.npmjs.com/package/@amanda-mitchell/semantic-release-npm-multiple

name: CI-CD

on:
push:
schedule:
- cron: "0 0 1 * *"
on: [push, pull_request]

jobs:
node_tests:
Expand Down Expand Up @@ -58,7 +54,7 @@ jobs:
browser_tests:
name: Browser Tests
runs-on: ${{ matrix.os }}
timeout-minutes: 10
timeout-minutes: 15
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -99,7 +95,7 @@ jobs:
coverage:
name: Code Coverage
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 5
needs:
- node_tests
- browser_tests
Expand Down

0 comments on commit 411695f

Please sign in to comment.