We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c30f9b6 + 5226d74 commit 541f70bCopy full SHA for 541f70b
.github/workflows/ci.yaml
@@ -11,11 +11,13 @@ jobs:
11
- 12
12
steps:
13
- uses: actions/checkout@v2
14
+ - name: Set up system
15
+ run: bin/before_install
16
- name: Set up Node
17
uses: actions/setup-node@v2
18
with:
19
node-version: ${{ matrix.node-version }}
- cache: yarn
20
+ cache: ${{ !env.ACT && 'yarn' || '' }}
21
registry-url: https://npm.manageiq.org/
22
- name: Prepare tests
23
run: bin/setup
bin/before_install
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
+
3
+if [ -n "$ACT" ]; then
4
+ curl -o- -L https://yarnpkg.com/install.sh | bash
5
+ echo "$HOME/.yarn/bin" >> $GITHUB_PATH
6
+ echo "$HOME/.config/yarn/global/node_modules/.bin" >> $GITHUB_PATH
7
+fi
0 commit comments