There was an error while loading. Please reload this page.
1 parent 11de278 commit c11d82cCopy full SHA for c11d82c
2 files changed
eslint.config.mjs
@@ -274,6 +274,11 @@ export default [
274
group: 'builtin',
275
position: 'before',
276
},
277
+ {
278
+ pattern: '@actions/**',
279
+ group: 'external',
280
+ position: 'before',
281
+ },
282
],
283
}],
284
'import/no-useless-path-segments': 'error',
scripts/all-green.mjs
@@ -1,8 +1,7 @@
1
import { setTimeout } from 'node:timers/promises'
2
-import { Octokit } from 'octokit'
3
import { summary } from '@actions/core'
4
import { context } from '@actions/github'
5
-// eslint-disable-next-line import/order -- @actions ESM exports resolve differently across supported Node.js versions.
+import { Octokit } from 'octokit'
6
import { downloadArtifacts } from './download-artifacts.mjs'
7
8
/* eslint-disable no-console */
0 commit comments