Skip to content

Commit

Permalink
Merge pull request #1189 from danger/fb/node-14
Browse files Browse the repository at this point in the history
[Maintenance] Switch to node-14 as the oldest tested environment
  • Loading branch information
orta committed Jan 7, 2022
2 parents 4b63bdf + 7b7529e commit a64699c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ jobs:
steps:
# Check out, and set up the node/ruby infra
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- actions/setup-node@v2
with:
node-version: '14'

# Get local dependencies & test
- run: yarn install
Expand Down
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ cache:
matrix:
include:
# Normal CI test runs :D
- node_js: "10"
- node_js: "14"

- node_js: "10"
- node_js: "14"
after_script:
- echo "Validating TypeScript definition file"
- yarn build
Expand All @@ -23,13 +23,13 @@ matrix:
- yarn flow check

# Checks every example dangerfile can run in `danger runner`.
- node_js: "10"
- node_js: "14"
script:
- yarn build
- node scripts/run-fixtures.js

# Runs both the CI and PR with a custom process to ensure apps like swift/rust work
- node_js: "10.13"
- node_js: "14"
script:
- yarn build
- node distribution/commands/danger-ci.js --process "ruby scripts/danger_runner.rb"
Expand Down

0 comments on commit a64699c

Please sign in to comment.