Skip to content

Commit bcdb2d7

Browse files
committed
Fix indenting of CI file
1 parent 757c903 commit bcdb2d7

File tree

1 file changed

+64
-64
lines changed

1 file changed

+64
-64
lines changed

Diff for: .github/workflows/ci.yml

+64-64
Original file line numberDiff line numberDiff line change
@@ -42,68 +42,68 @@ jobs:
4242
- name: Check Lint Rules
4343
run: yarn lint
4444

45-
test:
46-
name: Build and Test
47-
# strategy:
48-
# matrix:
49-
# os: [macos-12, ubuntu-22.04, windows-2022]
50-
# runs-on: ${{ matrix.os }}
51-
runs-on: ubuntu-22.04
52-
# env:
53-
# OS: ${{ matrix.os }}
54-
timeout-minutes: 15
55-
steps:
56-
- uses: actions/checkout@v1
57-
- name: Setup Node
58-
uses: actions/setup-node@v3
59-
with:
60-
node-version: '18'
61-
- name: Restore Dependencies and VS Code test instance
62-
uses: actions/cache@v3
63-
with:
64-
path: |
65-
node_modules
66-
*/*/node_modules
67-
packages/foam-vscode/.vscode-test
68-
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', 'packages/foam-vscode/src/test/run-tests.ts') }}-${{ secrets.CACHE_VERSION }}
69-
- name: Install Dependencies
70-
run: yarn
71-
- name: Build Packages
72-
run: yarn build
73-
- name: Run Tests
74-
uses: GabrielBB/[email protected]
75-
with:
76-
run: yarn test --stream
45+
test:
46+
name: Build and Test
47+
# strategy:
48+
# matrix:
49+
# os: [macos-12, ubuntu-22.04, windows-2022]
50+
# runs-on: ${{ matrix.os }}
51+
runs-on: ubuntu-22.04
52+
# env:
53+
# OS: ${{ matrix.os }}
54+
timeout-minutes: 15
55+
steps:
56+
- uses: actions/checkout@v1
57+
- name: Setup Node
58+
uses: actions/setup-node@v3
59+
with:
60+
node-version: '18'
61+
- name: Restore Dependencies and VS Code test instance
62+
uses: actions/cache@v3
63+
with:
64+
path: |
65+
node_modules
66+
*/*/node_modules
67+
packages/foam-vscode/.vscode-test
68+
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', 'packages/foam-vscode/src/test/run-tests.ts') }}-${{ secrets.CACHE_VERSION }}
69+
- name: Install Dependencies
70+
run: yarn
71+
- name: Build Packages
72+
run: yarn build
73+
- name: Run Tests
74+
uses: GabrielBB/[email protected]
75+
with:
76+
run: yarn test --stream
7777

78-
webtest:
79-
name: Build and Test (web)
80-
# strategy:
81-
# matrix:
82-
# os: [macos-12, ubuntu-22.04, windows-2022]
83-
# runs-on: ${{ matrix.os }}
84-
runs-on: ubuntu-22.04
85-
# env:
86-
# OS: ${{ matrix.os }}
87-
timeout-minutes: 15
88-
steps:
89-
- uses: actions/checkout@v1
90-
- name: Setup Node
91-
uses: actions/setup-node@v3
92-
with:
93-
node-version: '18'
94-
- name: Restore Dependencies and VS Code test instance
95-
uses: actions/cache@v3
96-
with:
97-
path: |
98-
node_modules
99-
*/*/node_modules
100-
packages/foam-vscode/.vscode-test
101-
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', 'packages/foam-vscode/src/test/run-tests.ts') }}-${{ secrets.CACHE_VERSION }}
102-
- name: Install Dependencies
103-
run: yarn
104-
- name: Build Packages
105-
run: yarn build
106-
- name: Run Tests
107-
uses: GabrielBB/[email protected]
108-
with:
109-
run: yarn test:web --stream
78+
webtest:
79+
name: Build and Test (web)
80+
# strategy:
81+
# matrix:
82+
# os: [macos-12, ubuntu-22.04, windows-2022]
83+
# runs-on: ${{ matrix.os }}
84+
runs-on: ubuntu-22.04
85+
# env:
86+
# OS: ${{ matrix.os }}
87+
timeout-minutes: 15
88+
steps:
89+
- uses: actions/checkout@v1
90+
- name: Setup Node
91+
uses: actions/setup-node@v3
92+
with:
93+
node-version: '18'
94+
- name: Restore Dependencies and VS Code test instance
95+
uses: actions/cache@v3
96+
with:
97+
path: |
98+
node_modules
99+
*/*/node_modules
100+
packages/foam-vscode/.vscode-test
101+
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', 'packages/foam-vscode/src/test/run-tests.ts') }}-${{ secrets.CACHE_VERSION }}
102+
- name: Install Dependencies
103+
run: yarn
104+
- name: Build Packages
105+
run: yarn build
106+
- name: Run Tests
107+
uses: GabrielBB/[email protected]
108+
with:
109+
run: yarn test:web --stream

0 commit comments

Comments
 (0)