Skip to content

Commit ad2fc3f

Browse files
committed
ci: Pass token for coveralls
1 parent 4a6ae67 commit ad2fc3f

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@ name: CI
22

33
on:
44
push:
5-
branches: [ develop, master ]
5+
branches: [develop, master]
66
pull_request:
7-
branches: [ develop ]
7+
branches: [develop]
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
1312

1413
steps:
15-
- uses: actions/checkout@v2
16-
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
18-
with:
19-
node-version: 12.x
20-
- run: yarn install --ignore-engines
21-
- run: yarn lint:nofix
22-
- run: yarn coveralls
14+
- uses: actions/checkout@v2
15+
- name: Setup Node JS
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: 12.x
19+
- run: yarn install --ignore-engines
20+
- run: yarn lint:nofix
21+
- run: yarn coveralls
22+
env:
23+
github-token: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)