Skip to content

Commit 050522d

Browse files
committed
chore: fix CI. maybe.
1 parent 1195510 commit 050522d

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

.github/workflows/test.yml

+15-16
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,18 @@ jobs:
1313
node-version: [12.x, 14.x, 16.x]
1414
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1515
steps:
16-
- uses: actions/checkout@v2
17-
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v2
19-
with:
20-
node-version: ${{ matrix.node-version }}
21-
cache: 'npm'
22-
- name: yarn install
23-
run: yarn --frozen-lockfile
24-
- name: test
25-
run: yarn test
26-
- name: coverage test
27-
run: yarn jest --coverage
28-
- uses: coverallsapp/[email protected]
29-
with:
30-
github-token: ${{ secrets.GITHUB_TOKEN }}
31-
16+
- uses: actions/checkout@v2
17+
- name: Use Node.js ${{ matrix.node-version }}
18+
uses: actions/setup-node@v2
19+
with:
20+
node-version: ${{ matrix.node-version }}
21+
cache: "yarn"
22+
- name: yarn install
23+
run: yarn --frozen-lockfile
24+
- name: test
25+
run: yarn test
26+
- name: coverage test
27+
run: yarn jest --coverage
28+
- uses: coverallsapp/[email protected]
29+
with:
30+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)