Skip to content

Commit 60bca0b

Browse files
author
Esen Sagynov
committed
Install Docker during build in Github Actions.
Docker is required to build some of the packages.
1 parent 7b112d1 commit 60bca0b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build.yml

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
- uses: actions/setup-node@v1
2121
with:
2222
node-version: ${{ matrix.node }}
23+
- name: Install Docker
24+
run: |
25+
curl -fsSL https://get.docker.com -o get-docker.sh
26+
sudo sh get-docker.sh
2327
- name: Installing
2428
run: yarn install --frozen-lockfile
2529
- name: Linting

0 commit comments

Comments
 (0)