Skip to content

Commit 3192574

Browse files
committed
ci(napi): remove redundant step from workflow + add comment (#14412)
Follow-on after #14383. Remove redundant lines from workflow + add a comment about why longer timeout on ESLint compat tests.
1 parent 0ec0847 commit 3192574

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,6 @@ jobs:
171171
name: Test NAPI
172172
runs-on: ubuntu-latest
173173
steps:
174-
- name: Enable long paths on Windows
175-
if: matrix.os == 'windows-latest'
176-
run: git config --system core.longpaths true
177174
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1
178175
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
179176
id: filter

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

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

20+
// These tests take longer than 5 seconds on CI, so increase timeout to 10 seconds
2021
describe('ESLint compatibility', { timeout: 10_000 }, () => {
2122
it('`definePlugin` should work', async () => {
2223
await testFixture('definePlugin');

0 commit comments

Comments
 (0)