From 9f694d7644ccc7e248cfe5c721630ad8ae3df19f Mon Sep 17 00:00:00 2001 From: Kelly Copley Date: Sat, 15 May 2021 21:18:03 -0400 Subject: [PATCH] test caching --- .github/workflows/tests.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4da5e33..dda594f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,6 +5,7 @@ on: branches: - master - develop + - CITests pull_request: branches: - master @@ -21,13 +22,13 @@ jobs: - name: Setup meteor uses: meteorengineer/setup-meteor@v1 - - name: cache dependencies - uses: actions/cache@v1 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- + # - name: cache dependencies + # uses: actions/cache@v1 + # with: + # path: ~/.npm + # key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} + # restore-keys: | + # ${{ runner.os }}-node- - run: npm ci - run: npm run lint - run: cd testApp && meteor npm ci