Skip to content

Commit

Permalink
CI: switch to Node.js 14.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Oct 29, 2020
1 parent b1c7d1d commit 0101b93
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/browserstack.yml
Expand Up @@ -2,7 +2,7 @@ name: BrowserStack
on: [push]
env:
CI: true
NODE: 12.x
NODE: 14.x

jobs:
browserstack:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundlewatch.yml
Expand Up @@ -2,7 +2,7 @@ name: Bundlewatch
on: [push, pull_request]
env:
CI: true
NODE: 12.x
NODE: 14.x

jobs:
bundlewatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/css.yml
Expand Up @@ -2,7 +2,7 @@ name: CSS
on: [push, pull_request]
env:
CI: true
NODE: 12.x
NODE: 14.x

jobs:
css:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dart-sass.yml
Expand Up @@ -2,7 +2,7 @@ name: CSS (Dart Sass)
on: [push, pull_request]
env:
CI: true
NODE: 12.x
NODE: 14.x

jobs:
css:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Expand Up @@ -2,7 +2,7 @@ name: Docs
on: [push, pull_request]
env:
CI: true
NODE: 12.x
NODE: 14.x

jobs:
docs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/js.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12]
node: [10, 12, 14]

steps:
- name: Clone repository
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Run Coveralls
uses: coverallsapp/github-action@master
if: matrix.node == 12
if: matrix.node == 14
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
path-to-lcov: "./js/coverage/lcov.info"
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Expand Up @@ -2,7 +2,7 @@ name: Lint
on: [push, pull_request]
env:
CI: true
NODE: 12.x
NODE: 14.x

jobs:
lint:
Expand Down

0 comments on commit 0101b93

Please sign in to comment.