Skip to content

Commit 6596530

Browse files
committed
test(oxlint): update .gitattributes to force lf line endings
1 parent fe0634c commit 6596530

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
apps/oxfmt/tests/fixtures/** text=auto eol=lf
2+
apps/oxlint/test/fixtures/** text=auto eol=lf

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
os: [ubuntu-latest]
175175
include:
176176
- os: windows-latest
177-
if: ${{ github.ref_name == 'main' }}
177+
# if: ${{ github.ref_name == 'main' }}
178178
runs-on: ${{ matrix.os }}
179179
steps:
180180
- name: Enable long paths on Windows

apps/oxlint/test/e2e.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ async function testFixture(fixtureName: string, options?: TestOptions): Promise<
3636
});
3737
}
3838

39-
describe.skipIf(
40-
process.platform === 'win32',
41-
)('oxlint CLI', () => {
39+
describe('oxlint CLI', () => {
4240
it('should lint a directory without errors', async () => {
4341
await testFixture('built_in_no_errors', { args: [] });
4442
});

apps/oxlint/test/eslint-compat.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function testFixture(fixtureName: string): Promise<void> {
1717
});
1818
}
1919

20-
describe.skipIf(process.platform === 'win32')('ESLint compatibility', () => {
20+
describe('ESLint compatibility', () => {
2121
it('`definePlugin` should work', async () => {
2222
await testFixture('definePlugin');
2323
});

0 commit comments

Comments
 (0)