Skip to content

Commit 92e71d3

Browse files
committed
fix yaml
1 parent 6e1eba2 commit 92e71d3

File tree

1 file changed

+29
-27
lines changed

1 file changed

+29
-27
lines changed

.github/workflows/build.yml

+29-27
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ jobs:
55
name: Build
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v2
9-
- uses: actions/setup-node@v2
10-
with:
11-
node-version: '16.x'
12-
- name: Cache node modules
8+
- uses: actions/checkout@v2
9+
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: "16.x"
13+
14+
- name: Cache node modules
1315
uses: actions/cache@v2
1416
env:
1517
cache-name: cache-node-modules
@@ -21,27 +23,27 @@ jobs:
2123
${{ runner.os }}-build-${{ env.cache-name }}-
2224
${{ runner.os }}-build-
2325
${{ runner.os }}-
24-
25-
- name: Install Dependencies
26+
27+
- name: Install Dependencies
2628
run: npm run install-lerna
2729

28-
- name: Bootstrap packages
29-
run: npm run bootstrap
30-
31-
- name: Build packages
32-
run: npm run build
33-
env:
34-
CI: true
35-
36-
- name: Install Playwright
37-
run: npx playwright install --with-deps
38-
39-
- name: Run Playwright tests
40-
run: npx playwright test
41-
42-
- uses: actions/upload-artifact@v2
43-
if: always()
44-
with:
45-
name: playwright-report
46-
path: playwright-report/
47-
retention-days: 30
30+
- name: Bootstrap packages
31+
run: npm run bootstrap
32+
33+
- name: Build packages
34+
run: npm run build
35+
env:
36+
CI: true
37+
38+
- name: Install Playwright
39+
run: npx playwright install --with-deps
40+
41+
- name: Run Playwright tests
42+
run: npx playwright test
43+
44+
- uses: actions/upload-artifact@v2
45+
if: always()
46+
with:
47+
name: playwright-report
48+
path: playwright-report/
49+
retention-days: 30

0 commit comments

Comments
 (0)