Skip to content

Commit

Permalink
test: refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Mar 14, 2024
1 parent d2721b1 commit 43e6a86
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,17 @@ jobs:
contents: read
strategy:
matrix:
os: ['macos-latest', 'ubuntu-latest', 'windows-latest']
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: ['18.17.1', '20.11.0']
tags: ['common.test.ts', 'dev.test.ts']
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}


name: '$RUNNER_OS / Node ${{ matrix.node-version }}'
name: '${{ matrix.os }} / Node ${{ matrix.node-version }}'
steps:
- uses: actions/checkout@v4

- name: Install Docker
if: runner.os == 'Linux'
if: ${{ matrix.os }} == 'ubuntu-latest'
uses: docker/setup-docker@v2
with:
version: 'latest'
Expand Down

0 comments on commit 43e6a86

Please sign in to comment.