Skip to content

Commit 2af391b

Browse files
committed
Fix workflow file
1 parent c402882 commit 2af391b

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.github/workflows/build.yml

+2-9
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,12 @@ jobs:
6363
coverage:
6464
name: Collect test coverage
6565
runs-on: ubuntu-latest
66-
67-
strategy:
68-
matrix:
69-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
70-
node_version:
71-
- ${{ env.PRIMARY_NODEJS_VERSION }}
72-
7366
steps:
7467
- uses: actions/checkout@v2
75-
- name: Setup node ${{ matrix.node_version }}
68+
- name: Setup node ${{ env.PRIMARY_NODEJS_VERSION }}
7669
uses: actions/setup-node@v2
7770
with:
78-
node-version: ${{ matrix.node_version }}
71+
node-version: ${{ env.PRIMARY_NODEJS_VERSION }}
7972
cache: 'npm'
8073
- run: npm ci
8174
- run: npm run build:transpile

0 commit comments

Comments
 (0)