File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11import { AnnotationProperties } from '@actions/core'
2- import { AnnotationSeverityLevel } from './annotation-severity-level'
2+ import { AnnotationSeverityLevel } from './annotation-severity-level.js '
33
44export class Annotation {
55 severityLevel : AnnotationSeverityLevel
Original file line number Diff line number Diff line change 11import * as core from '@actions/core'
2- import { Annotation } from './annotation'
2+ import { Annotation } from './annotation.js '
33
44export const echoMessages = ( annotations : Annotation [ ] ) : void => {
55 for ( const annotation of annotations ) {
Original file line number Diff line number Diff line change 11import * as core from '@actions/core'
22import * as glob from '@actions/glob'
3- import { echoMessages } from './command'
4- import { parseXmls } from './parser'
3+ import { echoMessages } from './command.js '
4+ import { parseXmls } from './parser.js '
55
66async function run ( ) : Promise < void > {
77 try {
Original file line number Diff line number Diff line change 11import fs from 'fs'
22import * as core from '@actions/core'
33import * as xml2js from 'xml2js'
4- import { Annotation } from './annotation'
4+ import { Annotation } from './annotation.js '
55
66export const parseXmls = async (
77 files : string [ ] ,
You can’t perform that action at this time.
0 commit comments