Skip to content

Commit aa4c5c8

Browse files
Correcting parse error in github actions
1 parent 688e214 commit aa4c5c8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
steps:
99
- uses: actions/checkout@v1
1010
- uses: actions/setup-node@v1
11-
with:
12-
node-version: 12
11+
with:
12+
node-version: 12
1313
- run: npm install
1414
- run: npm run build
1515
test:

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
steps:
77
- uses: actions/checkout@v1
88
- uses: actions/setup-node@v1
9-
with:
10-
node-version: 12
9+
with:
10+
node-version: 12
1111
- run: npm install
1212
- run: npm run build
1313
test:
1414
needs: build
1515
runs-on: ubuntu-latest
1616
steps:
17-
- \run: npm run test
17+
- run: npm run test
1818
lint:
1919
needs: build
2020
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)