Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Move environment variable CI -> PLUGIN_RUBY_CI.
Browse files Browse the repository at this point in the history
This avoids conflicts with users' CI systems.
  • Loading branch information
jonnyarnold committed Feb 2, 2021
1 parent 077cf34 commit 92a539e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# - truffleruby
runs-on: ${{ matrix.os }}
env:
CI: true
PLUGIN_RUBY_CI: true
steps:
- uses: actions/checkout@master

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
env:
CI: true
PLUGIN_RUBY_CI: true
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v2-beta
Expand Down
2 changes: 1 addition & 1 deletion src/parser/server.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

require 'bundler/setup' if ENV['CI']
require 'bundler/setup' if ENV['PLUGIN_RUBY_CI']
require 'socket'
require 'json'

Expand Down

0 comments on commit 92a539e

Please sign in to comment.