Skip to content

Commit 3d8f13b

Browse files
committed
remove bolt from test action
1 parent ec11a5f commit 3d8f13b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/test.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ name: Test
44

55
on:
66
push:
7-
branches: [ master ]
7+
branches: [master]
88
pull_request:
9-
branches: [ master ]
9+
branches: [master]
1010

1111
jobs:
1212
build:
@@ -18,14 +18,14 @@ jobs:
1818
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1919

2020
steps:
21-
- uses: actions/checkout@v2
22-
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v2
24-
with:
25-
node-version: ${{ matrix.node-version }}
26-
- run: sudo yarn global add bolt
27-
- run: bolt --frozen-lockfile
28-
- run: bolt lint
29-
- run: bolt test
30-
env:
31-
CI: true
21+
- uses: actions/checkout@v2
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v2
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
- run: sudo yarn global add bolt
27+
- run: yarn install --frozen-lockfile
28+
- run: yarn lint
29+
- run: yarn test
30+
env:
31+
CI: true

0 commit comments

Comments
 (0)