Skip to content

Commit

Permalink
Merge pull request #33 from Emurgo/ruslan/change-checks-node-version
Browse files Browse the repository at this point in the history
Changed pr-checks to match the node version with production
  • Loading branch information
vsubhuman committed Jul 29, 2021
2 parents 7943906 + 90f219e commit 5dbfbd1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pr-checks.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.5.0'
node-version: '12.18.0'
- name: Cache node modules
uses: actions/cache@v1
with:
Expand All @@ -28,14 +28,17 @@ jobs:
- name: run flow
run: |
npm run flow
- name: run flow-remove-types
run: |
npm run _flow-remove-types
lint:
if: github.event.review && (github.event.review.state == 'approved' || contains(github.event.review.body, '/check'))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.5.0'
node-version: '12.18.0'
- name: Cache node modules
uses: actions/cache@v1
with:
Expand Down

0 comments on commit 5dbfbd1

Please sign in to comment.