From 6d76b3a0cf4e33ad83dbed13db3ce772f92fbb2d Mon Sep 17 00:00:00 2001 From: Christoph Kappestein Date: Sat, 7 Dec 2024 12:11:34 +0100 Subject: [PATCH] update action --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a72c2a..7aa2e65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,7 @@ on: - v* jobs: build: - strategy: - matrix: - os: [macos-latest, ubuntu-latest, windows-latest] - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -18,7 +15,7 @@ jobs: with: node-version: 18.x - run: npm install - - run: npm test-compile + - run: npm run test-compile - name: Publish if: success() && startsWith(github.ref, 'refs/tags/') && matrix.os == 'ubuntu-latest' run: npm run deploy