From f306b2a421d65c2ae5e15c5bd233277a7dfeed0f Mon Sep 17 00:00:00 2001 From: Sven Ehrke Date: Thu, 4 Jul 2024 14:27:22 +0200 Subject: [PATCH] adapt release action --- .github/workflows/release.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d938b01..944fbe2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,19 +12,13 @@ jobs: name: Create Release runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - name: Checkout code uses: actions/checkout@main - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' + uses: actions/setup-node@v4 + with: + node-version: 18 - run: npm ci - run: npm run build --if-present - run: npm test --if-present