From 2af391b1897e7c8595fd05a795f51871902373c8 Mon Sep 17 00:00:00 2001 From: Roman Dvornov Date: Thu, 31 Oct 2024 03:06:53 +0100 Subject: [PATCH] Fix workflow file --- .github/workflows/build.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 46b527f..386a5b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,19 +63,12 @@ jobs: coverage: name: Collect test coverage runs-on: ubuntu-latest - - strategy: - matrix: - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - node_version: - - ${{ env.PRIMARY_NODEJS_VERSION }} - steps: - uses: actions/checkout@v2 - - name: Setup node ${{ matrix.node_version }} + - name: Setup node ${{ env.PRIMARY_NODEJS_VERSION }} uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node_version }} + node-version: ${{ env.PRIMARY_NODEJS_VERSION }} cache: 'npm' - run: npm ci - run: npm run build:transpile