Skip to content

Commit

Permalink
Install Docker during build in Github Actions.
Browse files Browse the repository at this point in the history
Docker is required to build some of the packages.
  • Loading branch information
Esen Sagynov committed Mar 21, 2024
1 parent 7b112d1 commit 60bca0b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install Docker
run: |
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
- name: Installing
run: yarn install --frozen-lockfile
- name: Linting
Expand Down

0 comments on commit 60bca0b

Please sign in to comment.