aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/browserstack.yml
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2021-01-11 13:05:05 +0200
committerXhmikosR <[email protected]>2021-01-13 11:03:32 +0200
commitda458176f38865de95398a25b63c77096ed4cf80 (patch)
treee54df7d2d7c18b11d276a1ac864fc2cc75648822 /.github/workflows/browserstack.yml
parent67c2f2c9650b5f08eb47f2da8d48cf79ebd54a23 (diff)
downloadbootstrap-da458176f38865de95398a25b63c77096ed4cf80.tar.xz
bootstrap-da458176f38865de95398a25b63c77096ed4cf80.zip
GitHub Actions cleanup (#32755)
* lowercase `runner.os` * remove `CI` environment variable since it's already set by the runner
Diffstat (limited to '.github/workflows/browserstack.yml')
-rw-r--r--.github/workflows/browserstack.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml
index 917ccc188..ea0a25704 100644
--- a/.github/workflows/browserstack.yml
+++ b/.github/workflows/browserstack.yml
@@ -4,7 +4,6 @@ on:
push:
env:
- CI: true
FORCE_COLOR: 2
NODE: 14.x
@@ -29,8 +28,8 @@ jobs:
path: ~/.npm
key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
- ${{ runner.OS }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
- ${{ runner.OS }}-node-v${{ env.NODE }}-
+ ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
+ ${{ runner.os }}-node-v${{ env.NODE }}-
- name: Install npm dependencies
run: npm ci