Skip to content

Commit 61e3905

Browse files
authored
ci: fix docker compose usage and add node 22 (#52)
1 parent b9f7a2b commit 61e3905

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [ 18, 20 ]
17+
node-version: [ 18, 20, 20 ]
1818
steps:
1919
- name: Checkout Source code
2020
uses: actions/checkout@v4
@@ -31,7 +31,7 @@ jobs:
3131
key: ${{ runner.os }}-${{ matrix.node-version }}-modules-${{ hashFiles('**/yarn.lock') }}
3232

3333
- name: Init docker
34-
run: docker-compose up -d
34+
run: docker compose up -d
3535

3636
- name: Install
3737
run: yarn
@@ -40,4 +40,4 @@ jobs:
4040
run: yarn test
4141

4242
- name: Teardown docker
43-
run: docker-compose down
43+
run: docker compose down

0 commit comments

Comments
 (0)