Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
fix(workflow): do the checkout first before other cmds
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Mar 5, 2021
1 parent 427e811 commit 4e26c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
matrix:
node-version: [10, 12, 14]
steps:
- uses: actions/checkout@v2
- name: Initiate docker containers
run: docker-compose -f docker-compose.yml up -d
- name: Check running containers
run: docker ps -a
- name: Check docker logs
run: docker logs redis
- uses: actions/checkout@v2
- name: Setup NodeJS v${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
Expand Down

0 comments on commit 4e26c0d

Please sign in to comment.