Skip to content

Commit cbebc13

Browse files
committedSep 10, 2021
Fix workflow.
1 parent 7aa796e commit cbebc13

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎.github/workflows/main.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
node-version: [14.x]
27-
env:
28-
BUNDLER: [webpack, browserify]
27+
bundler: [webpack, browserify]
2928
steps:
3029
- uses: actions/checkout@v2
3130
- name: Use Node.js ${{ matrix.node-version }}
@@ -35,6 +34,8 @@ jobs:
3534
- run: npm install
3635
- name: Run karma tests
3736
run: npm run test-karma
37+
env:
38+
BUNDLER: ${{ matrix.bundler }}
3839
lint:
3940
runs-on: ubuntu-latest
4041
timeout-minutes: 10

0 commit comments

Comments
 (0)
Please sign in to comment.