Skip to content

Commit

Permalink
Fix workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Oct 31, 2024
1 parent c402882 commit 2af391b
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2af391b

Please sign in to comment.