Skip to content

Commit 439af8b

Browse files
committed
fix pipeline
1 parent ca1f9e3 commit 439af8b

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,29 @@ on:
88

99
jobs:
1010
ci:
11-
name: Build and Test
12-
runs-on: "ubuntu-latest"
11+
name: Build and Test
12+
runs-on: "ubuntu-latest"
1313

14-
steps:
15-
- name: Check out code
16-
uses: actions/checkout@v3
17-
with:
18-
fetch-depth: 2
14+
steps:
15+
- name: Check out code
16+
uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 2
1919

20-
- name: Setup Node.js environment
21-
uses: actions/setup-node@v3
22-
with:
23-
node-version: 14
24-
cache: 'yarn'
20+
- name: Setup Node.js environment
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: 14
24+
cache: 'yarn'
2525

26-
- name: Install dependencies
27-
run: yarn
26+
- name: Install dependencies
27+
run: yarn
2828

29-
- name: Build
30-
run: yarn build
29+
- name: Build
30+
run: yarn build
3131

32-
- name: Lint
33-
run: yarn lint
32+
- name: Lint
33+
run: yarn lint
3434

35-
- name: Test
36-
run: yarn test
35+
- name: Test
36+
run: yarn test

0 commit comments

Comments
 (0)