Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/stylelint-config-twbs-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-01-13 14:12:09 +0300
committerGitHub <noreply@github.com>2020-01-13 14:12:09 +0300
commit7a24f2b3d602363a68825ee02f3b7abf9b5b1777 (patch)
treeba9d3af766646d69ca08880d29f00a4083323bf1 /.github/workflows
parentef928a2f1dc389c3386533b214002312f77b9538 (diff)
CI: use `actions/checkout` to clone the upstream repo (#43)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index db88d23..1996c41 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -18,7 +18,10 @@ jobs:
uses: actions/checkout@v2
- name: Clone twbs/bootstrap repository
- run: git clone https://github.com/twbs/bootstrap.git --depth 1
+ uses: actions/checkout@v2
+ with:
+ repository: twbs/bootstrap
+ path: bootstrap
- name: Set up Node.js
uses: actions/setup-node@v1