Skip to content

Commit

Permalink
Merge pull request #1042 from redwoodjs/dsp-CI-cache-check-files
Browse files Browse the repository at this point in the history
remove --check-files from CI yarn install
  • Loading branch information
thedavidprice committed Aug 31, 2020
2 parents bec56a2 + e37e1d2 commit 3bac838
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-eslint-jest.yaml
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
all:
if: github.event.pull_request.merged == false
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
Expand All @@ -30,7 +31,7 @@ jobs:
key: node_modules_${{ runner.os }}_${{ hashFiles('**/yarn.lock') }}

- name: Install dependencies
run: yarn install --frozen-lockfile --check-files
run: yarn install --frozen-lockfile

- name: Run ESLint
run: yarn lint
Expand All @@ -43,4 +44,4 @@ jobs:
- name: Run tests
run: yarn test
env:
CI: true
CI: true

0 comments on commit 3bac838

Please sign in to comment.