Skip to content

Commit

Permalink
ci: fix task and bump checkout action version
Browse files Browse the repository at this point in the history
  • Loading branch information
TillaTheHun0 committed Jan 25, 2024
1 parent eb662d6 commit 795ced7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
deno-version: [1.x]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
Expand All @@ -49,7 +49,7 @@ jobs:
redis-version: [7]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
Expand All @@ -62,9 +62,9 @@ jobs:
with:
redis-version: ${{ matrix.redis-version }}

- name: ⚡ Run Native Integration Tests
- name: ⚡ Run Integration Tests
run: |
deno task test:integration-native
deno task test:integration
env:
CI: true
REDIS_URL: http://127.0.0.1:6379
Expand All @@ -76,7 +76,7 @@ jobs:
needs: [test, test-integration]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down

0 comments on commit 795ced7

Please sign in to comment.